phpvms/database/migrations/2017_06_09_010621_create_aircrafts_table.php

45 lines
1.3 KiB
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');
$table->integer('aircraft_class_id')->unsigned()->nullable();
2017-06-09 09:37:51 +08:00
$table->string('icao');
$table->string('name');
$table->string('registration')->nullable();
$table->string('tail_number')->nullable();
$table->string('cargo_capacity')->nullable();
$table->string('fuel_capacity')->nullable();
$table->boolean('active')->default(true);
2017-06-09 09:37:51 +08:00
$table->timestamps();
$table->softDeletes();
$table->index('icao');
$table->unique('registration');
});
Schema::create('aircraft_classes', function (Blueprint $table) {
$table->increments('id');
$table->string('code');
$table->string('name');
$table->string('notes')->nullable();
$table->timestamps();
$table->softDeletes();
$table->index('code');
2017-06-09 09:37:51 +08:00
});
}
public function down()
{
Schema::drop('aircraft');
Schema::drop('aircraft_classes');
2017-06-09 09:37:51 +08:00
}
}