From eb4a4b754b8117b0c4e79067dde9c3758b7a833b Mon Sep 17 00:00:00 2001 From: Hankin Date: Fri, 23 Aug 2024 15:41:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=91=A8=E5=85=AD=E6=B4=BB?= =?UTF-8?q?=E5=8A=A8=E7=BB=9F=E4=B8=80=E7=AD=BE=E5=88=B0=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...398072_create_table_regular_activity_member_logs.up.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 1724398072_create_table_regular_activity_member_logs.up.sql diff --git a/1724398072_create_table_regular_activity_member_logs.up.sql b/1724398072_create_table_regular_activity_member_logs.up.sql new file mode 100644 index 0000000..c524ec8 --- /dev/null +++ b/1724398072_create_table_regular_activity_member_logs.up.sql @@ -0,0 +1,7 @@ +CREATE TABLE `ufutx_regulare_activity_member_logs` ( + `id` bigint(20) PRIMARY KEY NOT NULL AUTO_INCREMENT, + `user_id` integer NOT NULL COMMENT "用户id", + `activity_id` integer NOT NULL COMMENT "活动id", + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='周六活动签到记录'; \ No newline at end of file