Skip to content

Commit

Permalink
Increase cc2 to 200 char length and population to bigInteger
Browse files Browse the repository at this point in the history
  • Loading branch information
yurtesen authored Dec 17, 2017
1 parent a94eaab commit 7d3cc0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ public function up()
$table->char('feature_class', 1)->nullable();
$table->string('feature_code', 10)->nullable();
$table->char('country_code', 2);
$table->string('cc2', 60)->nullable();
$table->string('cc2', 200)->nullable();
$table->string('admin1_code', 20)->nullable();
$table->string('admin2_code', 80)->nullable();
$table->string('admin3_code', 20)->nullable();
$table->string('admin4_code', 20)->nullable();
$table->integer('population')->unsigned()->nullable();
$table->bigInteger('population')->unsigned()->nullable();
$table->integer('elevation')->nullable();
$table->integer('dem')->nullable();
$table->string('timezone_id', 40)->index()->nullable();
Expand Down

0 comments on commit 7d3cc0d

Please sign in to comment.