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