Add cost_block_hour tests; extra logging

This commit is contained in:
Nabeel Shahzad
2018-03-29 14:55:25 -05:00
parent 2090f05236
commit 08d3578d38
5 changed files with 26 additions and 14 deletions

View File

@@ -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();