From f35b3d866bf036fc473bf65078bb4db6162c4289 Mon Sep 17 00:00:00 2001 From: chc <1501738723@qq.com> Date: Mon, 13 Feb 2023 18:03:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=87=AA=E5=8A=A8=E9=A2=86?= =?UTF-8?q?=E5=8F=96=E4=BC=98=E6=83=A0=E5=88=B8sql=20li=5Fmember=5Fcoupon?= =?UTF-8?q?=5Fsign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init/mysql/lilishop.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/init/mysql/lilishop.sql b/init/mysql/lilishop.sql index 2a151d4..9bcc895 100644 --- a/init/mysql/lilishop.sql +++ b/init/mysql/lilishop.sql @@ -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 -- ----------------------------