mirror of
https://github.com/yoncodes/BD2PS.git
synced 2026-08-04 22:02:15 +02:00
17 lines
477 B
SQL
17 lines
477 B
SQL
CREATE TABLE "CharInfo" (
|
|
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
"Uid" BIGINT NOT NULL,
|
|
"InvenIndex" BIGINT,
|
|
"Id" INTEGER,
|
|
"Hp" BIGINT,
|
|
"Level" INTEGER,
|
|
"CostumeId" INTEGER,
|
|
"Exp" INTEGER,
|
|
"UseCostume" BIGINT,
|
|
"TalentLevel" INTEGER,
|
|
"TalentExp" INTEGER,
|
|
"SolidarityReward" INTEGER,
|
|
"ExpiryTime" BIGINT,
|
|
"PictorialbookInfoIndex" TEXT, -- References PictorialBookInfo.InvenIndex
|
|
"ConnectPotentialCostume" INTEGER
|
|
); |