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

@@ -0,0 +1,10 @@
CREATE TABLE "UserQuest" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"QuestId" INTEGER NOT NULL,
"PackId" INTEGER,
"Status" INTEGER DEFAULT 0, -- 0 = not accepted, 1 = in progress, 2 = completed, 3 = reward claimed
"Progress" INTEGER DEFAULT 0, -- quest progress (from questValue[0])
"RewardClaimed" INTEGER DEFAULT 0, -- 0 = false, 1 = true
"LastUpdate" BIGINT -- timestamp for daily resets, analytics, etc.
);