osb/database/migrations/2017_06_18_104531_create_ab_language_table.php
2018-06-18 21:18:34 +10:00

35 lines
588 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateAbLanguageTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ab_language', function(Blueprint $table)
{
$table->integer('id')->primary();
$table->string('name', 45)->nullable()->unique('name_UNIQUE');
$table->string('iso', 5)->nullable()->unique('iso_UNIQUE');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('ab_language');
}
}