18 lines
463 B
Markdown
18 lines
463 B
Markdown
### DDL 创建
|
|
```sql
|
|
|
|
```
|
|
### DDL修改
|
|
```sql
|
|
alter table ai_material
|
|
add is_summarized bool default true null comment '是否已总结';
|
|
|
|
|
|
|
|
alter table ai_intelligence_reply
|
|
add match_scene json comment '场景意图';
|
|
alter table ai_intelligence_reply
|
|
add match_type tinyint default 1 not null comment '匹配类型';
|
|
alter table ai_intelligence_reply
|
|
add match_resource tinyint default 0 null comment '留资匹配';
|
|
``` |