Add cost_block_hour tests; extra logging
This commit is contained in:
@@ -15,8 +15,8 @@ class CreateSubfleetTables extends Migration
|
||||
$table->unsignedInteger('airline_id')->nullable();
|
||||
$table->string('type', 50)->unique();
|
||||
$table->string('name', 50);
|
||||
$table->unsignedDecimal('cost_block_hour');
|
||||
$table->unsignedDecimal('cost_delay_minute');
|
||||
$table->unsignedDecimal('cost_block_hour')->default(0)->nullable();
|
||||
$table->unsignedDecimal('cost_delay_minute')->default(0)->nullable();
|
||||
$table->unsignedTinyInteger('fuel_type')->nullable();
|
||||
$table->unsignedDecimal('ground_handling_multiplier')->nullable()->default(100);
|
||||
$table->unsignedDecimal('cargo_capacity')->nullable();
|
||||
|
||||
Reference in New Issue
Block a user