update: contacts migration - default column with default value set to false.

This commit is contained in:
weichien00
2021-07-08 00:37:15 +08:00
parent 1351724030
commit c7719eb787
@@ -20,7 +20,7 @@ class CreateContactsTable extends Migration
$table->string('phone', '45')->nullable();
$table->string('email')->nullable();
$table->string('wechat_id', '45')->nullable();
$table->integer('default');
$table->integer('default')->default(false);
$table->softDeletes();
$table->timestamps();
});