#41 add fuel prices to the airports table
This commit is contained in:
@@ -19,6 +19,9 @@ class CreateAirportsTable extends Migration
|
||||
$table->string('name');
|
||||
$table->string('location')->nullable();
|
||||
$table->string('country')->nullable();
|
||||
$table->double('fuel_100ll_cost', 19, 2)->nullable();
|
||||
$table->double('fuel_jeta_cost', 19, 2)->nullable();
|
||||
$table->double('fuel_mogas_cost', 19, 2)->nullable();
|
||||
$table->float('lat', 7, 4)->default(0.0);
|
||||
$table->float('lon', 7, 4)->default(0.0);
|
||||
$table->timestamps();
|
||||
|
||||
Reference in New Issue
Block a user