Files
vinci/prisma/migrations/20250628140820_unique_chat/migration.sql
2026-04-02 17:09:04 +02:00

13 lines
490 B
SQL

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