diff --git a/sql/init.sql b/sql/init.sql index 67d5e3a..6198c59 100644 --- a/sql/init.sql +++ b/sql/init.sql @@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS im_robot_msg_template ( id bigint auto_increment comment '主键', robot_id varchar(100) not null comment '用户账户:机器人robotId', - msg_template_list varchar(512) not null comment '机器人消息模板列表', + msg_template_list text not null comment '机器人消息模板列表', is_delete tinyint default 0 not null comment '未删除0,删除id', create_at datetime default CURRENT_TIMESTAMP not null comment '创建时间', update_at datetime default CURRENT_TIMESTAMP not null comment '更新时间',