feat: 数据库更新sq网元主机信息变更

This commit is contained in:
TsMask
2024-03-06 11:06:58 +08:00
parent 5c82392cac
commit 9847c12642
5 changed files with 107 additions and 6 deletions

View File

@@ -51,10 +51,8 @@ ALTER TABLE
`omc_db`.`monitor_io` MODIFY COLUMN `read` int(11) NULL DEFAULT 0 COMMENT '读取K' AFTER `name`;
ALTER TABLE
`omc_db`.`monitor_io` MODIFY COLUMN `write` int(11) NULL DEFAULT 0 COMMENT '写入K' AFTER `read`;
ALTER TABLE
`omc_db`.`monitor_io` MODIFY COLUMN `count` int(11) NULL DEFAULT 0 COMMENT '次数' AFTER `write`;
ALTER TABLE
`omc_db`.`monitor_io` MODIFY COLUMN `time` int(11) NULL DEFAULT 0 COMMENT '耗时' AFTER `count`;
ALTER TABLE `omc_db`.`monitor_io` MODIFY COLUMN `count` int NULL DEFAULT 0 COMMENT '读写次数' AFTER `write`;
ALTER TABLE `omc_db`.`monitor_io` MODIFY COLUMN `time` int NULL DEFAULT 0 COMMENT '读写延迟' AFTER `count`;
ALTER TABLE
`omc_db`.`monitor_io`
ADD