phpvms/database/migrations/2017_06_08_191703_create_airlines_table.php

39 lines
784 B
PHP
Raw Normal View History

2017-06-09 09:02:52 +08:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateAirlinesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('airlines', function (Blueprint $table) {
$table->increments('id');
$table->string('code');
$table->string('name');
$table->char('country', 2)->nullable();
2017-06-09 09:46:50 +08:00
$table->boolean('active');
2017-06-09 09:02:52 +08:00
$table->timestamps();
2017-06-20 00:30:18 +08:00
$table->index('code');
$table->unique('code');
2017-06-09 09:02:52 +08:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('airlines');
}
}