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

14 lines
399 B
SQL

CREATE TABLE "GachaLogInfo" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"GachaGroupId" INTEGER,
"GachaId" INTEGER,
"BuyType" TEXT,
"GachaCount" INTEGER,
"GetPoint" INTEGER,
"GachaType" TEXT,
"PickupItemId" INTEGER,
"GachaFixedInfoIndex" TEXT, -- References GachaFixedInfo.InvenIndex
"RewardInfoBundle" TEXT,
"LogTime" BIGINT
);