migrate/1731392188_create_guide_hint.up.sql
2024-11-12 16:29:54 +08:00

8 lines
400 B
SQL

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