20221229.sql 280 B

12345
  1. alter table user add column password_state bit(1) not null default 1 comment '初始密码状态';
  2. ALTER table item add COLUMN department_id BIGINT(20) comment '所属部门';
  3. /* 2023-01-03 新增SQL*/
  4. ALTER table item_user_log add COLUMN stage_id BIGINT(20) comment '阶段id';