Update mall.sql

This commit is contained in:
macro 2020-07-28 20:38:58 +08:00
parent b0be2e91e6
commit 755b083d7d

View File

@ -1348,7 +1348,7 @@ INSERT INTO `pms_sku_stock` VALUES ('178', '35', '202002250035008', '200.00', '1
DROP TABLE IF EXISTS `sms_coupon`;
CREATE TABLE `sms_coupon` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`type` int(1) DEFAULT NULL COMMENT '优惠类型0->全场赠券1->会员赠券2->购物赠券3->注册赠券',
`type` int(1) DEFAULT NULL COMMENT '优惠类型0->全场赠券1->会员赠券2->购物赠券3->注册赠券',
`name` varchar(100) DEFAULT NULL,
`platform` int(1) DEFAULT NULL COMMENT '使用平台0->全部1->移动2->PC',
`count` int(11) DEFAULT NULL COMMENT '数量',
@ -1366,7 +1366,7 @@ CREATE TABLE `sms_coupon` (
`code` varchar(64) DEFAULT NULL COMMENT '优惠码',
`member_level` int(1) DEFAULT NULL COMMENT '可领取的会员类型0->无限时',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='优惠';
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='优惠';
-- ----------------------------
-- Records of sms_coupon