mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-03-31 06:29:46 +08:00
✨ 将战绩数据存到数据库中
This commit is contained in:
@@ -35,15 +35,15 @@ create table if not exists AchievementSeries
|
||||
-- @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,
|
||||
updated text
|
||||
id integer primary key,
|
||||
name text,
|
||||
title text,
|
||||
birthday text,
|
||||
star integer,
|
||||
element text,
|
||||
weapon text,
|
||||
nameCard text,
|
||||
updated text
|
||||
);
|
||||
|
||||
-- @brief 创建应用数据表
|
||||
@@ -99,4 +99,16 @@ create table if not exists SpiralAbyss
|
||||
energySkillRank text,
|
||||
floors text,
|
||||
updated text
|
||||
);
|
||||
);
|
||||
|
||||
-- @brief 创建战绩数据表
|
||||
create table if not exists UserRecord
|
||||
(
|
||||
uid integer primary key,
|
||||
role text,
|
||||
avatars text,
|
||||
stats text,
|
||||
worldExplore text,
|
||||
homes text,
|
||||
updated text
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user