From 0eb64fdafa70e1f422063cb375931404f502ff44 Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Tue, 3 Sep 2024 15:38:38 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=80=E8=AF=B7=E6=8E=92=E8=A1=8C=E6=A6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1725331388_create_share_scan_log.up.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 1725331388_create_share_scan_log.up.sql diff --git a/1725331388_create_share_scan_log.up.sql b/1725331388_create_share_scan_log.up.sql new file mode 100644 index 0000000..9726b6f --- /dev/null +++ b/1725331388_create_share_scan_log.up.sql @@ -0,0 +1,9 @@ +CREATE TABLE `ufutx_share_scan_log` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `from_user_id` int(11) NOT NULL COMMENT '邀请人id', + `open_id` varchar(50) NOT NULL COMMENT 'open_id', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `from_user_id` (`from_user_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='扫码邀请记录'; \ No newline at end of file