feat: 问答库增加附件字段

This commit is contained in:
2024-09-03 16:26:03 +08:00
parent 797908ce59
commit 65b08ad030
2 changed files with 13 additions and 9 deletions
+4
View File
@@ -220,3 +220,7 @@ ALTER TABLE laws_working_group_user
-- 2024-08-23 资料中心排序字段改为double
ALTER TABLE `laws_data_center_folder`
MODIFY COLUMN `sort` double NULL DEFAULT NULL COMMENT '文件夹顺序' AFTER `auth_view_ids`;
-- 2024-09-03 问答库回答增加附件字段
ALTER TABLE `laws_answer_library`
ADD COLUMN `attach` varchar(2000) NULL COMMENT '附件' AFTER `user_id`;