46 lines
1.8 KiB
SQL
46 lines
1.8 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- The required column `token` was added to the `Human` table with a prisma-level default value. This is not possible if the table is not empty. Please add this column as optional, then populate it before making it required.
|
|
|
|
*/
|
|
-- CreateTable
|
|
CREATE TABLE "_HumanToInstance" (
|
|
"A" TEXT NOT NULL,
|
|
"B" TEXT NOT NULL,
|
|
CONSTRAINT "_HumanToInstance_A_fkey" FOREIGN KEY ("A") REFERENCES "Human" ("key") ON DELETE CASCADE ON UPDATE CASCADE,
|
|
CONSTRAINT "_HumanToInstance_B_fkey" FOREIGN KEY ("B") REFERENCES "Instance" ("id") ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
|
|
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_Human" (
|
|
"key" TEXT NOT NULL PRIMARY KEY,
|
|
"token" TEXT NOT NULL,
|
|
"name" TEXT NOT NULL DEFAULT '__name__',
|
|
"lastActive" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
INSERT INTO "new_Human" ("key", "name") SELECT "key", "name" FROM "Human";
|
|
DROP TABLE "Human";
|
|
ALTER TABLE "new_Human" RENAME TO "Human";
|
|
CREATE UNIQUE INDEX "Human_token_key" ON "Human"("token");
|
|
CREATE TABLE "new_Instance" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"createdByKey" TEXT NOT NULL,
|
|
"gameKey" TEXT NOT NULL,
|
|
"gameState" JSONB NOT NULL,
|
|
CONSTRAINT "Instance_gameKey_fkey" FOREIGN KEY ("gameKey") REFERENCES "Game" ("key") ON DELETE RESTRICT ON UPDATE CASCADE
|
|
);
|
|
INSERT INTO "new_Instance" ("createdByKey", "gameKey", "gameState", "id") SELECT "createdByKey", "gameKey", "gameState", "id" FROM "Instance";
|
|
DROP TABLE "Instance";
|
|
ALTER TABLE "new_Instance" RENAME TO "Instance";
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "_HumanToInstance_AB_unique" ON "_HumanToInstance"("A", "B");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "_HumanToInstance_B_index" ON "_HumanToInstance"("B");
|