删除无用表,新增增量sql

This commit is contained in:
朱耘稷
2020-12-21 13:59:06 +08:00
committed by xuwenbo
parent 9008e6b833
commit 2ab12b28f3
2 changed files with 10 additions and 14 deletions

10
sql/3.1升级3.2sql.sql Normal file
View File

@ -0,0 +1,10 @@
-- ----------------------------
-- 字段修改
-- ----------------------------
ALTER TABLE yx_store_product ADD COLUMN is_integral tinyint(1) ZEROFILL NULL DEFAULT 0 COMMENT '是开启积分兑换' AFTER is_del;
ALTER TABLE yx_store_product_attr_value ADD COLUMN integral INT(10) DEFAULT 0 COMMENT '需要多少积分兑换' AFTER seckill_price;