From 7c11dddcdd12b2e3c10e7bae76790be37b887ff6 Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Mon, 2 Sep 2024 17:22:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=86=E5=8F=B2=E6=AD=A5=E6=95=B0=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=EF=BC=8Credis=E6=95=B0=E6=8D=AE=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1725266271_create_table_step.up.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 1725266271_create_table_step.up.sql diff --git a/1725266271_create_table_step.up.sql b/1725266271_create_table_step.up.sql new file mode 100644 index 0000000..bd42f87 --- /dev/null +++ b/1725266271_create_table_step.up.sql @@ -0,0 +1,10 @@ +CREATE TABLE `ufutx_history_step` +( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `step_id` int(11) NOT NULL DEFAULT '0', + `year_month` varchar(12) NOT NULL, + `step_count` int(11) NOT NULL DEFAULT '0', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='历史步数表'; \ No newline at end of file