phpvms/database/migrations/2017_06_09_010621_create_aircrafts_table.php

27 lines
660 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');
$table->string('icao');
$table->string('name');
$table->string('full_name')->nullable();
$table->string('registration')->nullable();
$table->boolean('active');
$table->timestamps();
$table->softDeletes();
});
}
public function down()
{
Schema::drop('aircraft');
}
}