Authored by mali

变价相关表的sql

... ... @@ -31,18 +31,9 @@ create table product_ext(
)ENGINE=INNODB DEFAULT CHARSET=utf8;
Alter table product_ext add primary key(product_skn);
-- 1.2 商品(erp_product.goods)
-- Alter table erp_product.goods ADD column `factory_goods_name` varchar(50) DEFAULT NULL COMMENT '厂家颜色';
-- 变价表和变价日志表
alter table erp_product.product_price modify `founder` int(11) unsigned DEFAULT '0' COMMENT '操作人ID';
alter table erp_product.product_price_log modify `founder` int(11) unsigned DEFAULT '0' COMMENT '操作人ID';
-- 1.4 缺失信息维护
... ...