diff --git a/database/migrations/2017_06_11_135707_create_airports_table.php b/database/migrations/2017_06_11_135707_create_airports_table.php index f1a45d14..03fc6999 100644 --- a/database/migrations/2017_06_11_135707_create_airports_table.php +++ b/database/migrations/2017_06_11_135707_create_airports_table.php @@ -13,7 +13,7 @@ class CreateAirportsTable extends Migration $table->string('icao', 5); $table->string('name', 100); $table->string('location', 100)->nullable(); - $table->string('country', 48)->nullable(); + $table->string('country', 64)->nullable(); $table->string('tz', 64)->nullable(); $table->unsignedDecimal('fuel_100ll_cost', 19)->default(0); $table->unsignedDecimal('fuel_jeta_cost', 19)->default(0);