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

21 lines
738 B
SQL

CREATE TABLE "GuildRaidMainInfo" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"Season" INTEGER,
"RaidDay" INTEGER,
"TodayNormalBattleCount" INTEGER,
"UserScore" BIGINT,
"LastScoreRewardId" INTEGER,
"GuildTotalScore" BIGINT,
"GuildTopPercent" REAL,
"GolemLevel" INTEGER,
"GolemExp" INTEGER,
"ObtainableSeasonReward" INTEGER,
"TodaySupporterUseCount" INTEGER,
"TotalSupporterRentalCount" INTEGER,
"TopGuildScore" BIGINT,
"PlayDay" INTEGER NOT NULL,
"ScheduleHistoryInfoIndex" TEXT, -- References ContentScheduleHistory.InvenIndex
"FlagGradeVersionInfoIndex" TEXT, -- References GuildRaidFlagGradeVersionInfo.InvenIndex
"GuildRank" INTEGER
);