添加角色列表数据

This commit is contained in:
BTMuli
2023-06-15 23:18:06 +08:00
parent 305cdad37e
commit fd89a7cc65
9 changed files with 520 additions and 210 deletions

View File

@@ -113,4 +113,25 @@ create table if not exists UserRecord
worldExplore text,
homes text,
updated text
)
);
-- @brief 创建角色数据表
create table if not exists UserCharacters
(
uid integer,
cid integer,
img text,
name text,
fetter integer,
level integer,
element text,
star integer,
weapon text,
reliquary text,
constellation text,
activeConstellation integer,
costume text,
talent text, -- todo: 数据获取
updated text,
primary key (uid, cid)
);