增加温馨提示

This commit is contained in:
buke 2024-11-12 16:29:54 +08:00
parent b47b7f39ad
commit f15becef57

View File

@ -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='餐单温馨提示';