rename 'enabled' to 'active'

This commit is contained in:
Nabeel Shahzad
2017-06-08 20:46:50 -05:00
parent 3678363766
commit 0cb98f1920
10 changed files with 28 additions and 33 deletions

View File

@@ -17,7 +17,7 @@ class CreateAirlinesTable extends Migration
$table->increments('id');
$table->string('code');
$table->string('name');
$table->boolean('enabled');
$table->boolean('active');
$table->timestamps();
$table->softDeletes();
});