#23 add rankings

This commit is contained in:
Nabeel Shahzad
2017-06-21 20:18:01 -05:00
parent 363d463833
commit 5b920151b8
12 changed files with 78 additions and 104 deletions

View File

@@ -17,10 +17,12 @@ class CreateRanksTable extends Migration
$table->increments('id');
$table->string('name');
$table->integer('hours')->default(0);
$table->boolean('auto_approval_acars')->default(false);
$table->boolean('auto_approval_manual')->default(false);
$table->boolean('auto_approve_acars')->default(false);
$table->boolean('auto_approve_manual')->default(false);
$table->boolean('auto_promote')->default(true);
$table->timestamps();
$table->unique('name');
});
Schema::create('flight_rank', function(Blueprint $table) {