This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/database/migrations/2017_07_23_000000_create_country_table.php
2017-08-03 16:35:36 +10:00

39 lines
799 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateCountryTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('country', function(Blueprint $table)
{
$table->integer('id',TRUE);
$table->string('name', 128)->nullable()->unique('name_UNIQUE');
$table->string('description', 128)->nullable();
$table->string('notes', 128)->nullable();
$table->string('two_code', 16)->nullable()->unique('two_code_UNIQUE');
$table->string('three_code', 16)->nullable()->unique('three_code_UNIQUE');
$table->boolean('active')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('country');
}
}