From f15becef5763fdb716dafed85b6bc1263b17465d Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Tue, 12 Nov 2024 16:29:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B8=A9=E9=A6=A8=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1731392188_create_guide_hint.up.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 1731392188_create_guide_hint.up.sql diff --git a/1731392188_create_guide_hint.up.sql b/1731392188_create_guide_hint.up.sql new file mode 100644 index 0000000..56c1855 --- /dev/null +++ b/1731392188_create_guide_hint.up.sql @@ -0,0 +1,8 @@ +CREATE TABLE `ufutx_guide_hint` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '餐单类型 0:准备日 1:装修日 2:清洁日', + `hint` text COMMENT '温馨提示', + `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