jinpengyong
2022-01-06 45ece9986a39a01081fab9b224966e1f297d383d
修改建表mac字段长度
4 files modified
8 ■■■■ changed files
src/main/resources/mapper/AlarmMapper.xml 2 ●●● patch | view | raw | blame | history
src/main/resources/mapper/HistoryFiveMinutelyMapper.xml 2 ●●● patch | view | raw | blame | history
src/main/resources/mapper/HistoryMapper.xml 2 ●●● patch | view | raw | blame | history
src/main/resources/mapper/HistoryMinutelyMapper.xml 2 ●●● patch | view | raw | blame | history
src/main/resources/mapper/AlarmMapper.xml
@@ -37,7 +37,7 @@
    <update id="createTable">
        CREATE TABLE IF NOT EXISTS `alarm_${yearAndMonth}` (
        `mac` varchar(20) CHARACTER SET utf8 DEFAULT NULL,
        `mac` varchar(30) CHARACTER SET utf8 DEFAULT NULL,
        `json` json DEFAULT NULL,
        `state` int(2) DEFAULT NULL,
        `time` datetime DEFAULT NULL,
src/main/resources/mapper/HistoryFiveMinutelyMapper.xml
@@ -43,7 +43,7 @@
    <update id="createHistoryFiveMinutely" parameterType="String">
        CREATE TABLE  IF NOT EXISTS `history_five_minutely_${yearAndMonth}` (
        `mac` varchar(20) CHARACTER SET latin1 DEFAULT NULL,
        `mac` varchar(30) CHARACTER SET latin1 DEFAULT NULL,
        `time` datetime DEFAULT NULL,
        `json` json DEFAULT NULL,
         KEY `idx_time` (`time`),
src/main/resources/mapper/HistoryMapper.xml
@@ -250,7 +250,7 @@
    <update id="createHistoryTable" parameterType="String">
        CREATE TABLE history_${yearMonthDay} (
        `mac` varchar(20) DEFAULT NULL,
        `mac` varchar(30) DEFAULT NULL,
        `value` json DEFAULT NULL,
        `time` datetime DEFAULT NULL,
        `version` int(11) DEFAULT NULL,
src/main/resources/mapper/HistoryMinutelyMapper.xml
@@ -12,7 +12,7 @@
    </insert>
    <update id="createHistoryMinutelyTable">
    CREATE TABLE  IF NOT EXISTS `history_minutely_${yearAndMonth}` (
        `mac` varchar(20) CHARACTER SET latin1 DEFAULT NULL,
        `mac` varchar(30) CHARACTER SET latin1 DEFAULT NULL,
        `time` datetime DEFAULT NULL,
        `json` json DEFAULT NULL,
        KEY `_idx_mac` (`mac`) USING BTREE,