Add base payrate field for ranks

This commit is contained in:
Nabeel Shahzad
2018-02-26 17:56:30 -06:00
parent 4a73a5a6b3
commit f6ec647eb6
4 changed files with 26 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ class CreateRanksTable extends Migration
$table->string('name', 50);
$table->string('image_link')->nullable();
$table->unsignedInteger('hours')->default(0);
$table->unsignedDecimal('base_pay_rate')->nullable()->default(0);
$table->boolean('auto_approve_acars')->nullable()->default(false);
$table->boolean('auto_approve_manual')->nullable()->default(false);
$table->boolean('auto_promote')->nullable()->default(true);