20230213.sql 466 B

12345
  1. alter table post add COLUMN parent_id bigint(20) DEFAULT NULL comment '父级岗位id';
  2. alter table customer add COLUMN user_id bigint(20) DEFAULT NULL comment '所属员工id';
  3. alter table visit add COLUMN user_id bigint(20) DEFAULT NULL comment '所属员工id';
  4. alter table business_opportunity add COLUMN user_id bigint(20) DEFAULT NULL comment '所属员工id';
  5. alter table item add COLUMN user_id bigint(20) DEFAULT NULL comment '所属员工id(客户经理)';