Fix dropping of unique index when table prefix is present #934
This commit is contained in:
parent
be15426b5b
commit
eae345efa7
@ -9,7 +9,7 @@ class AirlineRemoveNullable extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::table('airlines', function (Blueprint $table) {
|
||||
$table->dropUnique('airlines_iata_unique');
|
||||
$table->dropUnique(['iata']);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user