✏️ 修正 type

This commit is contained in:
BTMuli
2023-05-31 23:54:37 +08:00
parent 87a929a26e
commit c21eff2d11
2 changed files with 24 additions and 9 deletions

View File

@@ -32,6 +32,19 @@ create table if not exists AchievementSeries
updated text
);
-- @brief 创建角色数据表
create table if not exists AppCharacters
(
id integer primary key,
name text,
title text,
birthday text,
star integer,
element text,
weapon text,
nameCard text default ''
);
-- @brief 创建应用数据表
create table if not exists AppData
(