feat: 更新机器人配置并添加数据库迁移脚本

- 将bot_config_template.toml中的版本升级至7.9.0
- 增强数据库配置选项以支持PostgreSQL
- 引入一个新脚本,用于在SQLite、MySQL和PostgreSQL之间迁移数据
- 实现一个方言适配器,用于处理特定于数据库的行为和配置
This commit is contained in:
Windpicker-owo
2025-11-27 18:45:01 +08:00
parent 369639a8f1
commit 43483b934e
30 changed files with 1658 additions and 2226 deletions

View File

@@ -373,8 +373,14 @@ class AdaptiveBatchScheduler:
"""批量执行插入操作"""
async with get_db_session() as session:
try:
# 收集数据
all_data = [op.data for op in operations if op.data]
# 收集数据,并过滤掉 id=None 的情况(让数据库自动生成)
all_data = []
for op in operations:
if op.data:
# 过滤掉 id 为 None 的键,让数据库自动生成主键
filtered_data = {k: v for k, v in op.data.items() if not (k == "id" and v is None)}
all_data.append(filtered_data)
if not all_data:
return