mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #4866 from pixelfed/staging
Update migration, fixes #4863
This commit is contained in:
commit
84b63f8aa9
|
@ -25,7 +25,11 @@ return new class extends Migration
|
|||
});
|
||||
|
||||
Schema::table('user_roles', function (Blueprint $table) {
|
||||
$table->dropIndex('user_roles_profile_id_unique');
|
||||
$schemaManager = Schema::getConnection()->getDoctrineSchemaManager();
|
||||
$indexesFound = $schemaManager->listTableIndexes('user_roles');
|
||||
if (array_key_exists('user_roles_profile_id_unique', $indexesFound)) {
|
||||
$table->dropIndex('user_roles_profile_id_unique');
|
||||
}
|
||||
$table->unsignedBigInteger('profile_id')->unique()->nullable()->index()->change();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue