Skip to content

Commit 555b40c

Browse files
committed
Fix incorrect migration file
1 parent e9c8aaf commit 555b40c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • prisma/migrations/20240922092246_neovim_config_unique_for_id_user_id

prisma/migrations/20240922092246_neovim_config_unique_for_id_user_id/migration.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
- A unique constraint covering the columns `[id,userId]` on the table `NeovimConfig` will be added. If there are existing duplicate values, this will fail.
55
66
*/-- CreateIndex
7-
CREATEUNIQUEINDEX "NeovimConfig_id_userId_key"
7+
CREATE UNIQUE INDEX "NeovimConfig_id_userId_key"
88
ON "NeovimConfig"("id", "userId");

0 commit comments

Comments
 (0)