Remove tail_number field from aircraft

This commit is contained in:
Nabeel Shahzad
2018-02-12 11:03:25 -06:00
parent 62506a26a1
commit ee71f4a1c8
7 changed files with 23 additions and 41 deletions

View File

@@ -15,10 +15,9 @@ class CreateAircraftsTable extends Migration
$table->string('icao', 4)->nullable();
$table->string('airport_id', 5)->nullable();
$table->timestamp('landing_time')->nullable();
$table->string('hex_code', 10)->nullable();
$table->string('name', 50);
$table->string('registration', 10)->nullable();
$table->string('tail_number', 10)->nullable();
$table->string('hex_code', 10)->nullable();
$table->unsignedDecimal('zfw', 12)->nullable()->default(0);
$table->unsignedBigInteger('flight_time')->nullable()->default(0);
$table->boolean('active')->default(true);