add migrate

This commit is contained in:
root 2024-07-15 14:41:18 +00:00
parent aa8cd6e0c1
commit c497b237cd

View File

@ -0,0 +1,15 @@
-- CreateTable
CREATE TABLE "ActiveParentLoginCode" (
"id" TEXT NOT NULL,
"parent_id" TEXT NOT NULL,
"code" INTEGER NOT NULL,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "ActiveParentLoginCode_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "ActiveParentLoginCode_code_key" ON "ActiveParentLoginCode"("code");
-- AddForeignKey
ALTER TABLE "ActiveParentLoginCode" ADD CONSTRAINT "ActiveParentLoginCode_parent_id_fkey" FOREIGN KEY ("parent_id") REFERENCES "User"("id") ON DELETE RESTRICT ON UPDATE CASCADE;