feat: release1.8.0

This commit is contained in:
meilin.huang
2024-04-12 17:07:28 +08:00
parent 8998a21626
commit e2b524dadb
10 changed files with 27 additions and 17 deletions

View File

@@ -885,7 +885,8 @@ CREATE TABLE `t_tag_tree` (
`is_deleted` tinyint(8) NOT NULL DEFAULT 0,
`delete_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_code_path` (`code_path`(100)) USING BTREE
KEY `idx_code_path` (`code_path`(200)) USING BTREE,
KEY `idx_code` (`code`(32)) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='标签树';
-- ----------------------------