From 5121c23fce682527b7de37e74ec70cd67f580fbe Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Wed, 23 Oct 2024 10:30:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=80=E5=8E=8B=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1729648065_create_table_user_pressure.up.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 1729648065_create_table_user_pressure.up.sql diff --git a/1729648065_create_table_user_pressure.up.sql b/1729648065_create_table_user_pressure.up.sql new file mode 100644 index 0000000..5d8b915 --- /dev/null +++ b/1729648065_create_table_user_pressure.up.sql @@ -0,0 +1,10 @@ +CREATE TABLE `ufutx_user_pressure` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL COMMENT '用户id', + `high_pressure` int(11) NOT NULL COMMENT '高压', + `low_pressure` int(11) NOT NULL COMMENT '低压', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `user_id` (`user_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户高低压表'; \ No newline at end of file