mirror of
https://github.com/SrIzan10/vinci.git
synced 2026-06-06 01:07:00 +00:00
13 lines
490 B
SQL
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");
|