parent
2f879711a3
commit
388881ebfd
@ -0,0 +1,27 @@
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column province_name;
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column city_name;
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column district_name;
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
add province_id int null comment '省id';
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
add city_id int null comment '市id';
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column province_code;
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column city_code;
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
add district_id int null comment '区id';
|
||||
|
||||
alter table tb_userinfo_shipping_address
|
||||
drop column district_code;
|
||||
|
Loading…
Reference in new issue