mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-05 06:12:14 +02:00
9 lines
373 B
SQL
9 lines
373 B
SQL
CREATE TABLE "TodayQuestInfo" (
|
|
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
"Uid" BIGINT NOT NULL,
|
|
"QuestInfoIndex" TEXT, -- References QuestInfo.InvenIndex
|
|
"ClearQuestIds" INTEGER, -- Parallel array with clear_quest_ids, today_quest_id
|
|
"TodayEndTime" BIGINT,
|
|
"TodayQuestId" INTEGER NOT NULL -- Parallel array with clear_quest_ids, today_quest_id
|
|
);
|