认证虚拟清单模块-增加项目库id字段

This commit is contained in:
wangzhijiang
2023-03-06 10:02:15 +08:00
parent 72c6dbb13f
commit e70d1f19c6
3 changed files with 10 additions and 0 deletions
@@ -282,3 +282,8 @@ INSERT INTO `sys_dict` (`id`, `dict_name`, `dict_code`, `description`, `del_flag
INSERT INTO `sys_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `is_tag_dict`, `is_read_only`, `attribute_type`, `del_flag`, `en_name`) VALUES ('1632552514273353729', '1632552252162908162', '草稿', '2', '草稿', 2, 1, 'admin', '2023-03-06 09:23:45', NULL, NULL, 1, NULL, NULL, '0', 'Draft');
INSERT INTO `sys_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `is_tag_dict`, `is_read_only`, `attribute_type`, `del_flag`, `en_name`) VALUES ('1632552455762812930', '1632552252162908162', '已发布', '1', '已发布', 1, 1, 'admin', '2023-03-06 09:23:31', NULL, NULL, 1, NULL, NULL, '0', 'Issue');
-- 项目库-认证清单表-增加项目库id 2023-03-06 未同步生产环境
ALTER TABLE `project_certification_inventory`
ADD COLUMN `project_library_id` varchar(64) NULL COMMENT '项目库id' AFTER `certification_progress`;