Change fuel_used to block_fuel

This commit is contained in:
Nabeel Shahzad
2018-01-30 11:05:14 -06:00
parent 6498ba1d16
commit 4f59e466a2
5 changed files with 46 additions and 45 deletions

View File

@@ -30,12 +30,11 @@ class CreatePirepTables extends Migration
$table->string('arr_airport_id', 5);
$table->unsignedInteger('distance')->nullable();
$table->unsignedInteger('planned_distance')->nullable();
$table->unsignedInteger('altitude')->nullable();
$table->unsignedInteger('level')->nullable();
$table->unsignedDecimal('flight_time', 19)->nullable();
$table->unsignedDecimal('planned_flight_time', 19)->nullable();
$table->unsignedDecimal('gross_weight', 19)->nullable();
$table->unsignedDecimal('fuel_used', 19)->nullable();
$table->unsignedDecimal('zfw', 19)->nullable();
$table->unsignedDecimal('block_fuel', 19)->nullable();
$table->decimal('landing_rate', 19)->nullable();
$table->text('route')->nullable();
$table->text('notes')->nullable();