phpvms/database/migrations/2017_06_09_010621_create_aircrafts_table.php

31 lines
843 B
PHP
Raw Normal View History

2017-06-09 09:37:51 +08:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateAircraftsTable extends Migration
{
public function up()
{
Schema::create('aircraft', function (Blueprint $table) {
$table->increments('id');
2017-06-24 06:37:51 +08:00
$table->integer('subfleet_id')->unsigned();
2017-06-25 03:00:56 +08:00
$table->integer('airport_id')->unsigned()->nullable();
$table->string('hex_code', 10)->nullable();
$table->string('name', 50);
$table->string('registration', 10)->nullable();
$table->string('tail_number', 10)->nullable();
$table->boolean('active')->default(true);
2017-06-09 09:37:51 +08:00
$table->timestamps();
$table->unique('registration');
});
2017-06-09 09:37:51 +08:00
}
public function down()
{
Schema::drop('aircraft');
}
}