From 062ae298b0ae07f44d02c1d3a7bfffddd60a799a Mon Sep 17 00:00:00 2001 From: MobiusT <13402190140@qq.com> Date: Mon, 2 Oct 2023 22:01:27 +0800 Subject: [PATCH] bug fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix error[数据库初始化出错: Unknown filter param 'displayTokenDict'] --- nonebot_plugin_arktools/src/core/database/game_sqlite.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nonebot_plugin_arktools/src/core/database/game_sqlite.py b/nonebot_plugin_arktools/src/core/database/game_sqlite.py index 3e3895c..5b37dbd 100644 --- a/nonebot_plugin_arktools/src/core/database/game_sqlite.py +++ b/nonebot_plugin_arktools/src/core/database/game_sqlite.py @@ -54,6 +54,7 @@ class CharacterModel(Model): potentialRanks = fields.JSONField(null=True) favorKeyFrames = fields.JSONField(null=True) allSkillLvlup = fields.JSONField(null=True) + displayTokenDict = fields.JSONField(null=True) class Meta: table = "character"