Skip to content

Commit 72c8d77

Browse files
authored
Merge pull request #448 from jdd-canada/fix-postgresql-index-name-collision
Fix PostgreSQL index name collision in MigrationQueueIndexOptimization
2 parents b9bf7a5 + db64606 commit 72c8d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/Migrations/20251119005411_MigrationQueueIndexOptimization.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function change(): void {
4242
->addIndex(
4343
['workerkey'],
4444
[
45-
'name' => 'workerkey',
45+
'name' => 'queued_jobs_workerkey',
4646
],
4747
)
4848
->update();

0 commit comments

Comments
 (0)