千星奇域页面

This commit is contained in:
BTMuli
2025-10-27 19:42:02 +08:00
parent 6eab6c81f1
commit a368223805
13 changed files with 1222 additions and 176 deletions

View File

@@ -1,6 +1,5 @@
-- @file plugins/Sqlite/sql/createTable.sql
-- @brief sqlite数据库创建表语句
-- @since Beta v0.8.0
-- @since Beta v0.8.4
-- @brief 创建成就数据表
create table if not exists Achievements
@@ -148,6 +147,24 @@ create table if not exists GachaRecords
updated text
);
-- @brief 创建千星奇域祈愿数据表
create table if not exists GachaBRecords
(
id text primary key not null,
uid text,
region text,
scheduleId text,
gachaType text,
opGachaType text,
time text,
itemId text,
name text,
type text,
rank text,
isUp text,
updated text
);
-- @brief 创建用户帖子收藏
create table if not exists UFPost
(