1
0
forked from bot/app

feat: 插件启用停用检测

This commit is contained in:
2024-03-26 22:36:16 +08:00
parent ac234544a3
commit 5d7c201018
2 changed files with 6 additions and 6 deletions

View File

@ -238,9 +238,9 @@ class Database:
# 检测缺失字段由于SQLite是动态类型所以不需要检测类型
for n_field, n_type in new_structure.items():
if n_field not in existing_structure.keys() and n_field.lower() not in ["id", "table_name"]:
print(n_type, self.DEFAULT_MAPPING.get(n_type, ''))
default_value = self.DEFAULT_MAPPING.get(n_type, "''")
self.cursor.execute(
f"ALTER TABLE '{model.TABLE_NAME}' ADD COLUMN {n_field} {n_type} DEFAULT {self.DEFAULT_MAPPING.get(n_type, '')}"
f"ALTER TABLE '{model.TABLE_NAME}' ADD COLUMN {n_field} {n_type} DEFAULT {self.DEFAULT_MAPPING.get(n_type, default_value)}"
)
# 检测多余字段进行删除