Add alt airport to pirep tables

This commit is contained in:
Nabeel Shahzad
2018-09-08 11:38:30 -05:00
parent 9e55f8ecf0
commit daffd1017f
3 changed files with 18 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ class CreatePirepTables extends Migration
$table->char('flight_type', 1)->default(FlightType::SCHED_PAX);
$table->string('dpt_airport_id', 4);
$table->string('arr_airport_id', 4);
$table->string('alt_airport_id', 4)->nullable();
$table->unsignedInteger('level')->nullable();
$table->unsignedDecimal('distance')->nullable();
$table->unsignedDecimal('planned_distance')->nullable();