Files
BD2PS/database/migrations/301_today_quest_info.sql
yoncodes e58fd190b4 pushing
2025-10-28 21:21:28 -04:00

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
);