增加自动领取优惠券sql li_member_coupon_sign
parent
dd0fd20432
commit
f35b3d866b
|
@ -9788,6 +9788,23 @@ CREATE TABLE `li_member_coupon` (
|
|||
-- Records of li_member_coupon
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for li_member_coupon_sign
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `li_member_coupon_sign`;
|
||||
CREATE TABLE `li_member_coupon_sign` (
|
||||
`id` bigint NOT NULL,
|
||||
`coupon_activity_Id` bigint DEFAULT NULL COMMENT '优惠券活动id',
|
||||
`member_id` bigint DEFAULT NULL COMMENT '会员id',
|
||||
`invalid_time` datetime DEFAULT NULL COMMENT '过期时间',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of li_member_coupon_sign
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for li_member_evaluation
|
||||
-- ----------------------------
|
||||
|
|
Loading…
Reference in New Issue