Authored by mali

alter table yh_shops.product add column source_flag enum('0', '1') default '0' …

…COMMENT '新平台发布的商品为1 原来则为0';
... ... @@ -88,7 +88,7 @@ create table product_shop_relation(
Alter table product_shop_relation add primary key(product_skn, shop_id);
-- 标识商品是否是新平台的商品
alter table yh_shops.product add column source_flag smallint default '0' COMMENT '新平台发布的商品为1 原来则为0';
alter table yh_shops.product add column source_flag enum('0', '1') default '0' COMMENT '新平台发布的商品为1 原来则为0';
... ...