21 lines
845 B
SQL
21 lines
845 B
SQL
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_Special" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"name" JSONB NOT NULL,
|
|
"subtitle" JSONB,
|
|
"maxAttempts" INTEGER NOT NULL DEFAULT 7,
|
|
"unlockSteps" TEXT NOT NULL,
|
|
"createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"launchDate" DATETIME,
|
|
"endDate" DATETIME,
|
|
"curator" TEXT,
|
|
"hidden" BOOLEAN NOT NULL DEFAULT false
|
|
);
|
|
INSERT INTO "new_Special" ("createdAt", "curator", "endDate", "id", "launchDate", "maxAttempts", "name", "subtitle", "unlockSteps") SELECT "createdAt", "curator", "endDate", "id", "launchDate", "maxAttempts", "name", "subtitle", "unlockSteps" FROM "Special";
|
|
DROP TABLE "Special";
|
|
ALTER TABLE "new_Special" RENAME TO "Special";
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|