contact controller model table

This commit is contained in:
Asif
2018-05-07 14:38:40 +08:00
parent 1e923a3368
commit d31258cc82
4 changed files with 93 additions and 8 deletions
@@ -15,7 +15,7 @@ class CreateContactsTable extends Migration
{
Schema::create('contacts', function (Blueprint $table) {
$table->increments('id');
$table->string('ff_id');
$table->integer('ff_id')->unique();
$table->timestamps();
});
}