add: mml object type

This commit is contained in:
2024-03-06 16:30:20 +08:00
parent a759c17a46
commit 8e13208363

View File

@@ -180,4 +180,7 @@ VALUES (
ALTER TABLE `omc_db`.`alarm`
ADD INDEX IF NOT EXISTS `idx_severity_status` (
`alarm_status`, `orig_severity`
) USING BTREE;
) USING BTREE;
ALTER TABLE `omc_db`.`mml_system`
ADD COLUMN IF NOT EXISTS `object_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'mml' AFTER `mml_display`;