changed file section

This commit is contained in:
yoncodes
2025-10-29 14:13:47 -04:00
parent 1badd8cb4f
commit 397c34bec1
1568 changed files with 3068 additions and 3575 deletions

View File

@@ -1,9 +1,10 @@
CREATE TABLE "QuestLevelInfo" (
CREATE TABLE QuestLevelInfo (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"PackId" INTEGER,
"PackId" INTEGER NOT NULL DEFAULT 1,
"QuestLevel" INTEGER,
"ClearQuest" INTEGER,
"QuestOpt" INTEGER,
"IsLevelComplete" INTEGER
);
"IsLevelComplete" INTEGER,
UNIQUE("Uid", "PackId")
);