数据表加字段
数据库:suqian
表名:my_disclose
sql:
alter table my_disclose add p_user_id int(11) not null default 0 after subject;
alter table my_disclose add shop_id int(11) not null default 0 after user_id;
表名:user
sql:
alter table user add type tinyint(1) not null default 1 comment '1代表企业用户,2代表个人用户' after head_image