update_5.5.0-5.5.1.sql 1.0 KB

1234567891011121314151617
  1. create table flow_instance_biz_ext
  2. (
  3. id bigint not null comment 'ID'
  4. primary key,
  5. tenant_id varchar(20) default '000000' null comment '租户编号',
  6. create_dept bigint null comment '创建部门',
  7. create_by bigint null comment '创建者',
  8. create_time datetime null comment '创建时间',
  9. update_by bigint null comment '更新者',
  10. update_time datetime null comment '更新时间',
  11. business_code varchar(255) null comment '业务编码',
  12. business_title varchar(1000) null comment '业务标题',
  13. del_flag char default '0' null comment '删除标志(0代表存在 1代表删除)',
  14. instance_id bigint null comment '流程实例Id',
  15. business_id varchar(255) null comment '业务Id'
  16. )
  17. comment '流程实例业务扩展表';