/* Warnings: - A unique constraint covering the columns `[certificateNumber]` on the table `Certificate` will be added. If there are existing duplicate values, this will fail. - A unique constraint covering the columns `[userId,courseId]` on the table `Certificate` will be added. If there are existing duplicate values, this will fail. - Added the required column `certificateNumber` to the `Certificate` table without a default value. This is not possible if the table is not empty. */ -- CreateEnum CREATE TYPE "MiniGameDifficulty" AS ENUM ('BEGINNER', 'INTERMEDIATE', 'ADVANCED'); -- AlterTable ALTER TABLE "Certificate" ADD COLUMN "certificateNumber" TEXT NOT NULL, ADD COLUMN "pdfVersion" INTEGER NOT NULL DEFAULT 1; -- CreateTable CREATE TABLE "MiniGame" ( "id" TEXT NOT NULL, "slug" TEXT NOT NULL, "title" TEXT NOT NULL, "description" TEXT NOT NULL, "isActive" BOOLEAN NOT NULL DEFAULT true, "difficulty" "MiniGameDifficulty" NOT NULL DEFAULT 'INTERMEDIATE', "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, CONSTRAINT "MiniGame_pkey" PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "MiniGameQuestion" ( "id" TEXT NOT NULL, "miniGameId" TEXT NOT NULL, "prompt" TEXT NOT NULL, "choices" TEXT[], "answerIndex" INTEGER NOT NULL, "orderIndex" INTEGER NOT NULL DEFAULT 0, CONSTRAINT "MiniGameQuestion_pkey" PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "MiniGameAttempt" ( "id" TEXT NOT NULL, "userId" TEXT NOT NULL, "miniGameId" TEXT NOT NULL, "scorePercent" INTEGER NOT NULL, "correctCount" INTEGER NOT NULL, "totalQuestions" INTEGER NOT NULL, "startedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "completedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, CONSTRAINT "MiniGameAttempt_pkey" PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "StudyRecommendation" ( "id" TEXT NOT NULL, "userId" TEXT NOT NULL, "courseId" TEXT NOT NULL, "reason" TEXT NOT NULL, "priority" INTEGER NOT NULL DEFAULT 0, "isActive" BOOLEAN NOT NULL DEFAULT true, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, CONSTRAINT "StudyRecommendation_pkey" PRIMARY KEY ("id") ); -- CreateIndex CREATE UNIQUE INDEX "MiniGame_slug_key" ON "MiniGame"("slug"); -- CreateIndex CREATE INDEX "MiniGameQuestion_miniGameId_orderIndex_idx" ON "MiniGameQuestion"("miniGameId", "orderIndex"); -- CreateIndex CREATE INDEX "MiniGameAttempt_userId_miniGameId_completedAt_idx" ON "MiniGameAttempt"("userId", "miniGameId", "completedAt"); -- CreateIndex CREATE INDEX "StudyRecommendation_userId_isActive_priority_idx" ON "StudyRecommendation"("userId", "isActive", "priority"); -- CreateIndex CREATE UNIQUE INDEX "Certificate_certificateNumber_key" ON "Certificate"("certificateNumber"); -- CreateIndex CREATE UNIQUE INDEX "Certificate_userId_courseId_key" ON "Certificate"("userId", "courseId"); -- AddForeignKey ALTER TABLE "MiniGameQuestion" ADD CONSTRAINT "MiniGameQuestion_miniGameId_fkey" FOREIGN KEY ("miniGameId") REFERENCES "MiniGame"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "MiniGameAttempt" ADD CONSTRAINT "MiniGameAttempt_userId_fkey" FOREIGN KEY ("userId") REFERENCES "Profile"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "MiniGameAttempt" ADD CONSTRAINT "MiniGameAttempt_miniGameId_fkey" FOREIGN KEY ("miniGameId") REFERENCES "MiniGame"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "StudyRecommendation" ADD CONSTRAINT "StudyRecommendation_userId_fkey" FOREIGN KEY ("userId") REFERENCES "Profile"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "StudyRecommendation" ADD CONSTRAINT "StudyRecommendation_courseId_fkey" FOREIGN KEY ("courseId") REFERENCES "Course"("id") ON DELETE CASCADE ON UPDATE CASCADE;