flight search and pagination (in admin), schema changes to accomodate
This commit is contained in:
@@ -19,9 +19,9 @@ class CreateFlightsTable extends Migration
|
||||
$table->string('flight_number', 10);
|
||||
$table->string('route_code', 5)->nullable();
|
||||
$table->string('route_leg', 5)->nullable();
|
||||
$table->integer('dpt_airport_id')->unsigned();
|
||||
$table->integer('arr_airport_id')->unsigned();
|
||||
$table->integer('alt_airport_id')->unsigned()->nullable();
|
||||
$table->string('dpt_airport_id', 5);
|
||||
$table->string('arr_airport_id', 5);
|
||||
$table->string('alt_airport_id', 5)->nullable();
|
||||
$table->text('route')->nullable();
|
||||
$table->text('dpt_time', 10)->nullable();
|
||||
$table->text('arr_time', 10)->nullable();
|
||||
|
||||
Reference in New Issue
Block a user