This commit is contained in:
wangliwen 2022-12-12 10:04:34 +08:00
parent eb97a398fe
commit 3147d1ea2e
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ create TABLE `sys_audit_team` (
`index` varchar(255) NULL comment '审核组索引', `index` varchar(255) NULL comment '审核组索引',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) comment = '流程审核组组员'; ) comment = '流程审核组组员';
alter table `sys_audit_team` ADD INDEX `name`(`name`) USING BTREE comment '审核组名称索引'; alter table `sys_audit_team` ADD INDEX `name_`(`name`) USING BTREE comment '审核组名称索引';
SET FOREIGN_KEY_CHECKS = 1; SET FOREIGN_KEY_CHECKS = 1;