Files
twotalesanimation 81ad7e4ea9 Initial commit
2026-06-11 10:46:09 +02:00

15 lines
468 B
SQL

-- CreateTable AllowedStudent
CREATE TABLE "AllowedStudent" (
"id" TEXT NOT NULL,
"email" TEXT NOT NULL,
"levels" TEXT NOT NULL,
"active" BOOLEAN NOT NULL DEFAULT true,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "AllowedStudent_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "AllowedStudent_email_key" ON "AllowedStudent"("email");