Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update-activiti20220530-activiti20220611.sql 2.2KB

1 giorno fa
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. update act_node_assignee set is_back=0 where is_back is null;
  2. update act_node_assignee set multiple=0 where multiple is null;
  3. alter table act_business_status add create_by VARCHAR(255) not null comment '创建人';
  4. alter table act_business_status add update_by VARCHAR(255) not null comment '更新人';
  5. update act_business_status set create_by = 'admin' ,update_by = 'admin';
  6. update act_business_status set create_time = SYSDATE() ,update_time = SYSDATE();
  7. alter table act_business_status modify create_time datetime not null comment '创建时间';
  8. alter table act_business_status modify update_time datetime not null comment '更新时间';
  9. alter table act_task_node add create_by VARCHAR(255) not null comment '创建人';
  10. alter table act_task_node add update_by VARCHAR(255) not null comment '更新人';
  11. update act_task_node set create_by = 'admin' ,update_by = 'admin';
  12. update act_task_node set create_time = SYSDATE() ,update_time = SYSDATE();
  13. alter table act_task_node modify create_time datetime not null comment '创建时间';
  14. alter table act_task_node modify update_time datetime not null comment '更新时间';
  15. alter table act_node_assignee modify is_back bigint(1) not null default 0 comment '是否可退回,0不可退回,1可退回';
  16. alter table act_node_assignee modify is_show bigint(1) not null default 1 comment '是否弹窗选人,0不弹,1弹窗';
  17. alter table act_node_assignee modify multiple bigint(1) not null default 0 comment '是否会签,0非会签,1会签';
  18. alter table act_node_assignee add is_delegate bigint(1) not null default 0 comment '是否可委托,0不可委托,1可委托';
  19. alter table act_node_assignee add is_transmit bigint(1) not null default 0 comment '是否可转办,0不可转办,1可转办';
  20. alter table act_node_assignee add is_copy bigint(1) not null default 0 comment '是否可抄送,0不可抄送,1可抄送';
  21. alter table act_node_assignee add add_multi_instance bigint(1) not null comment '是否可加签,0不可加签,1可加签';
  22. alter table act_node_assignee add delete_multi_instance bigint(1) not null comment '是否可减签,0不可减签,1可减签';
  23. alter table act_business_status add suspended_reason VARCHAR(1000) comment '挂起或激活原因';
  24. commit;