Skip to content

2.5.9 完善助手管理

Latest
Compare
Choose a tag to compare
@LiuYuYang01 LiuYuYang01 released this 22 May 12:40
· 4 commits to master since this release

新增表结构

create table assistant
(
    id         int auto_increment
        primary key,
    name       varchar(255)      not null comment '助手名称',
    `key`      varchar(500)      not null comment '密钥',
    model      varchar(255)      not null comment '模型',
    is_default tinyint default 0 not null comment '是否被启用',
    constraint assistant_pk
        unique (name),
    constraint assistant_pk_2
        unique (id)
)
    comment '助手管理';