38 lines
687 B
PHP
38 lines
687 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
class CreateCountriesTable extends Migration {
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('countries', function(Blueprint $table)
|
|
{
|
|
$table->increments('id');
|
|
$table->string('name', 191);
|
|
$table->string('twocode', 2)->nullable();
|
|
$table->string('threecode', 3);
|
|
$table->integer('currency_id')->unsigned()->nullable()->index('countries_currency_id_foreign');
|
|
$table->boolean('active');
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('countries');
|
|
}
|
|
|
|
}
|