20240416.sql 448 B

123456789101112
  1. alter table wm_task
  2. add approval_user_id int null comment '审核人userId' after dept_review_task_count;
  3. alter table wm_task
  4. add approval_time datetime null comment '审核时间' after approval_user_id;
  5. alter table wm_task
  6. add dept_approval_user_id int null comment '企业审核人userId' after approval_time;
  7. alter table wm_task
  8. add dept_approval_time datetime null comment '企业审核时间' after dept_approval_user_id;