订单表新增支付积分

This commit is contained in:
朱耘稷
2020-12-21 16:57:04 +08:00
committed by xuwenbo
parent 2009d64524
commit a467f4d32f
3 changed files with 8 additions and 2 deletions

View File

@ -6,5 +6,6 @@
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;
ALTER TABLE yx_store_order ADD COLUMN `pay_integral` decimal(8, 2) UNSIGNED NOT NULL DEFAULT 0.00 COMMENT '支付积分';