Working Database setupgit add .

This commit is contained in:
2025-12-22 00:38:30 -06:00
commit 24dc4090c0
21 changed files with 1955 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/*
Warnings:
- A unique constraint covering the columns `[userId,category,className]` on the table `Class` will be added. If there are existing duplicate values, this will fail.
*/
-- DropIndex
DROP INDEX "Class_userId_category_key";
-- CreateIndex
CREATE UNIQUE INDEX "Class_userId_category_className_key" ON "Class"("userId", "category", "className");