认证清单-发布接口开发、对接。更新SQL

This commit is contained in:
wangzhijiang
2023-03-06 18:01:10 +08:00
parent ca9beade47
commit d6488768f8
9 changed files with 349 additions and 4 deletions
@@ -287,3 +287,10 @@ INSERT INTO `sys_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `descri
-- 项目库-认证清单表-增加项目库id 2023-03-06 未同步生产环境
ALTER TABLE `project_certification_inventory`
ADD COLUMN `project_library_id` varchar(64) NULL COMMENT '项目库id' AFTER `certification_progress`;
-- 项目库-项目与角色关系表-增加模块类型(标识)字段 2023-03-06 未同步生产环境
ALTER TABLE `project_library_role_rel`
ADD COLUMN `model_type` varchar(64) NULL COMMENT '模块类型,对应系统中枚举类 RoleRelModelTypeEnum ' AFTER `role_code`;
-- 初始化历史数据
update project_library_role_rel set model_type = 'Laws inventory'