fuel cost field type adjustment
This commit is contained in:
@@ -16,9 +16,9 @@ class CreateAirportsTable extends Migration
|
|||||||
$table->string('country', 64)->nullable();
|
$table->string('country', 64)->nullable();
|
||||||
$table->string('tz', 64)->nullable();
|
$table->string('tz', 64)->nullable();
|
||||||
$table->boolean('hub')->default(false);
|
$table->boolean('hub')->default(false);
|
||||||
$table->unsignedDecimal('fuel_100ll_cost', 19)->nullable()->default(0);
|
$table->unsignedDecimal('fuel_100ll_cost', 8)->nullable()->default(0);
|
||||||
$table->unsignedDecimal('fuel_jeta_cost', 19)->nullable()->default(0);
|
$table->unsignedDecimal('fuel_jeta_cost', 8)->nullable()->default(0);
|
||||||
$table->unsignedDecimal('fuel_mogas_cost', 19)->nullable()->default(0);
|
$table->unsignedDecimal('fuel_mogas_cost', 8)->nullable()->default(0);
|
||||||
$table->float('lat', 7, 4)->nullable()->default(0.0);
|
$table->float('lat', 7, 4)->nullable()->default(0.0);
|
||||||
$table->float('lon', 7, 4)->nullable()->default(0.0);
|
$table->float('lon', 7, 4)->nullable()->default(0.0);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user