Authored by mali

ALTER TABLE erp_supplier.supplier MODIFY `registered_capital` VARCHAR(100) NOT …

…NULL DEFAULT '0' COMMENT '注册资本';
... ... @@ -19,4 +19,8 @@ CREATE TABLE yh_shops.`hot_search_brand` (
-- 网销页面增加skn的所有skc是否都已上架状态
Alter table erp_product.product add column skc_onsale_status tinyint(4) NOT NULL DEFAULT '0' comment '是否skc都已经上架, 1代表是 0代表否';
update erp_product.product set skc_onsale_status = 1;
\ No newline at end of file
update erp_product.product set skc_onsale_status = 1;
ALTER TABLE erp_supplier.supplier MODIFY `registered_capital` VARCHAR(100) NOT NULL DEFAULT '0' COMMENT '注册资本';
\ No newline at end of file
... ...