noteshare.space/server/prisma/migrations/20220828191812_add_unique_constraint_embeds/migration.sql
2022-08-28 21:57:47 +02:00

9 lines
304 B
SQL

/*
Warnings:
- A unique constraint covering the columns `[note_id,embed_id]` on the table `EncryptedEmbed` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX "EncryptedEmbed_note_id_embed_id_key" ON "EncryptedEmbed"("note_id", "embed_id");