Skip to content

Commit

Permalink
At least one record has a "state" field longer than it's supposed to be.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Nov 10, 2016
1 parent 331619d commit b87d985
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,7 +22,7 @@ public function up()
$t->column('id', 'integer');
$t->column('icao', 'string', array('limit' => 4));
$t->column('name', 'string', array('limit' => 80));
$t->column('state', 'string', array('limit' => 2));
$t->column('state', 'string', array('limit' => 4));
$t->column('country', 'string', array('limit' => 50));
$t->column('municipality', 'string', array('limit' => 80));
$t->column('latitude', 'float', array('default' => 0));
Expand Down

0 comments on commit b87d985

Please sign in to comment.