Skip to content

Commit

Permalink
increase country column size in airports table
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Dec 13, 2017
1 parent a3027e4 commit eaf632e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -13,7 +13,7 @@ public function up()
$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);
Expand Down

0 comments on commit eaf632e

Please sign in to comment.