From eaf632e3e2ea9627a57770f1e6810be15972148b Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Wed, 13 Dec 2017 11:46:48 -0600 Subject: [PATCH] increase country column size in airports table --- database/migrations/2017_06_11_135707_create_airports_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);