increments('id');
$table->integer('country_id')->nullable();
$table->char('iso', 2);
$table->string('name', 80);
$table->string('nicename', 80);
$table->char('iso3', 3)->nullable();
$table->smallInteger('numcode')->nullable();
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('countries');
}
}