vault backup: 2026-01-09 18:07:04

This commit is contained in:
wubaoyong
2026-01-09 18:07:04 +08:00
parent c145a9face
commit f5ac738c35
11 changed files with 103 additions and 25 deletions

View File

@@ -8,10 +8,11 @@ alter table ai_material
add is_summarized bool default true null comment '是否已总结';
alter table ai_intelligence_reply
add match_scene json
after advice_reply;
add match_scene json comment '场景意图';
alter table ai_intelligence_reply
add match_type int default 1 not null after advice_reply;
add match_type tinyint default 1 not null comment '匹配类型';
alter table ai_intelligence_reply
add match_resource tinyint default 0 null comment '留资匹配';
```