Add distance and planned_distance to PIREP api

This commit is contained in:
Nabeel Shahzad
2018-01-29 16:27:55 -06:00
parent 23dbbc788f
commit c55b55726e
4 changed files with 9 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ class CreatePirepTables extends Migration
$table->string('route_leg', 5)->nullable();
$table->string('dpt_airport_id', 5);
$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();