create ufutx_s2_search_filter_options

This commit is contained in:
tg130 2024-08-22 11:43:11 +08:00
parent 157ad16cc5
commit 69bd7c5aba

View File

@ -0,0 +1 @@
CREATE TABLE `health`.`ufutx_s2_search_filter_options` ( `id` INT NOT NULL AUTO_INCREMENT , `name` VARCHAR(256) NOT NULL COMMENT '名字,尽量用英文和数字' , `options_origin` TEXT NOT NULL COMMENT '原始配置' , `options` TEXT NOT NULL COMMENT '输出配置' , PRIMARY KEY (`id`)) ENGINE = InnoDB CHARSET=utf8mb4 COLLATE utf8mb4_general_ci COMMENT = '搜索过滤选项';