increase country column size in airports table
This commit is contained in:
parent
a3027e4f95
commit
eaf632e3e2
@ -13,7 +13,7 @@ class CreateAirportsTable extends Migration
|
|||||||
$table->string('icao', 5);
|
$table->string('icao', 5);
|
||||||
$table->string('name', 100);
|
$table->string('name', 100);
|
||||||
$table->string('location', 100)->nullable();
|
$table->string('location', 100)->nullable();
|
||||||
$table->string('country', 48)->nullable();
|
$table->string('country', 64)->nullable();
|
||||||
$table->string('tz', 64)->nullable();
|
$table->string('tz', 64)->nullable();
|
||||||
$table->unsignedDecimal('fuel_100ll_cost', 19)->default(0);
|
$table->unsignedDecimal('fuel_100ll_cost', 19)->default(0);
|
||||||
$table->unsignedDecimal('fuel_jeta_cost', 19)->default(0);
|
$table->unsignedDecimal('fuel_jeta_cost', 19)->default(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user