kaiyu
2020-12-28 458abb3a7085edb35d808efc2351552508e82d4b
五分钟建表语句添加索引
1 files modified
4 ■■■ changed files
src/main/resources/mapper/HistoryFiveMinutelyMapper.xml 4 ●●● patch | view | raw | blame | history
src/main/resources/mapper/HistoryFiveMinutelyMapper.xml
@@ -45,7 +45,9 @@
        CREATE TABLE  IF NOT EXISTS `history_five_minutely_${yearAndMonth}` (
        `mac` varchar(20) CHARACTER SET latin1 DEFAULT NULL,
        `time` datetime DEFAULT NULL,
        `json` json DEFAULT NULL
        `json` json DEFAULT NULL,
         KEY `idx_time` (`time`),
         KEY `idx_mac` (`mac`)
        ) ENGINE=INNODB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
    </update>