feat(REQ-3004) - 完善表索引
This commit is contained in:
parent
7476728287
commit
b250d0ee8d
@ -183,10 +183,6 @@ public class BpmnProcessTaskServiceImpl implements BpmnProcessTaskService {
|
||||
private BpmnProcessTaskService bpmnProcessTaskService;
|
||||
@Resource
|
||||
private BpmnProcessDefinitionService bpmnProcessModelService;
|
||||
@Resource
|
||||
private FormRepositoryService formRepositoryService;
|
||||
@Resource
|
||||
private ExtAxBpmnFormRelationService bpmnFormRelationService;
|
||||
|
||||
@Override
|
||||
public BpmPageResult<BpmnTaskTodoPageItemVO> getTodoTaskPage(BpmnTaskPageSearchDTO dto) {
|
||||
|
||||
@ -12,7 +12,12 @@ create table ext_ax_bpmn_form_relation
|
||||
is_delete bigint default 0 not null comment '是否删除:0否,1是'
|
||||
);
|
||||
|
||||
create index idx_key_def_form
|
||||
on ext_ax_bpmn_form_relation (bpmn_definition_id desc, `key` asc, tenant_id asc, is_delete asc);
|
||||
|
||||
|
||||
|
||||
-- 流程日志表增加字段权限配置
|
||||
alter table ext_ax_process_log
|
||||
add form_field_permission_conf json null comment '表单字段权限' after button_conf;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user