noteshare.space/server/prisma/migrations/20220828191812_add_unique_constraint_embeds/migration.sql

9 lines
304 B
MySQL
Raw Normal View History

2022-08-28 22:57:47 +03:00
/*
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");