20240229.sql 401 B

12345678910111213141516
  1. alter table sys_dept_csm
  2. add user_id int null comment '用户id' after csm_name;
  3. create table sys_csm_user_relation
  4. (
  5. user_id int not null comment 'csm用户id',
  6. parent_id int not null comment '父级用户id',
  7. primary key (user_id, parent_id)
  8. )
  9. comment 'csm用户关系表' charset = utf8mb4;
  10. alter table sys_log
  11. add resp text null comment '响应信息' after params;