ADD COLUMN `presale_storage_num` int(11) unsigned DEFAULT '0' COMMENT '预售库存',
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -97,7 +97,7 @@ ADD COLUMN `factory_goods_name` varchar(50) COMMENT '厂家颜色' AFTER `goods_ | @@ -97,7 +97,7 @@ ADD COLUMN `factory_goods_name` varchar(50) COMMENT '厂家颜色' AFTER `goods_ | ||
97 | 97 | ||
98 | ALTER TABLE `erp_product`.`storage` | 98 | ALTER TABLE `erp_product`.`storage` |
99 | ADD COLUMN `is_suppled` enum('Y','N') DEFAULT 'Y' COMMENT '能否补货' AFTER `update_time`, | 99 | ADD COLUMN `is_suppled` enum('Y','N') DEFAULT 'Y' COMMENT '能否补货' AFTER `update_time`, |
100 | -ADD COLUMN `presale_storage_num` int(11) unsigned DEFAULT '0' COMMENT '预售库存' AFTER `bar_code`, | 100 | +ADD COLUMN `presale_storage_num` int(11) unsigned DEFAULT '0' COMMENT '预售库存', |
101 | ADD INDEX `is_suppled` (`is_suppled`) comment ''; | 101 | ADD INDEX `is_suppled` (`is_suppled`) comment ''; |
102 | 102 | ||
103 | 103 |
-
Please register or login to post a comment