Add flights to the importer, added a few missing columns with output

This commit is contained in:
Nabeel Shahzad
2018-01-03 21:40:05 -06:00
parent da1b3b16ee
commit 507ce5f24f
5 changed files with 76 additions and 34 deletions

View File

@@ -24,6 +24,8 @@ class CreateFlightTables extends Migration
$table->string('alt_airport_id', 5)->nullable();
$table->string('dpt_time', 10)->nullable();
$table->string('arr_time', 10)->nullable();
$table->unsignedInteger('level')->default(0);
$table->unsignedDecimal('distance', 19)->default(0.0);
$table->unsignedDecimal('flight_time', 19)->nullable();
$table->text('route')->nullable();
$table->text('notes')->nullable();