removed index on missing column

This commit is contained in:
Nabeel Shahzad 2017-07-07 15:13:04 -05:00
parent e47b4628a0
commit 1cbfc5d9cd

View File

@ -18,7 +18,6 @@ class CreateAircraftsTable extends Migration
$table->boolean('active')->default(true); $table->boolean('active')->default(true);
$table->timestamps(); $table->timestamps();
$table->index('icao');
$table->unique('registration'); $table->unique('registration');
}); });