mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-04 22:02:15 +02:00
11 lines
531 B
SQL
11 lines
531 B
SQL
CREATE TABLE "RecommendDeckBaseInfo" (
|
|
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
"Uid" BIGINT NOT NULL,
|
|
"BattlePower" INTEGER,
|
|
"DeckInfoIndex" TEXT, -- References DeckInfo.InvenIndex
|
|
"TotalWarDeckInfoIndex" TEXT, -- References TotalWarDeckInfo.InvenIndex
|
|
"CharInfoIndex" TEXT, -- References CharInfo.InvenIndex
|
|
"CostumeInfoIndex" TEXT, -- References CostumeInfo.InvenIndex
|
|
"EquipInfoIndex" TEXT, -- References EquipInfo.InvenIndex
|
|
"AwakeInfoIndex" TEXT -- References CharAwakeInfo.InvenIndex
|
|
); |