add: alarm_event table upgrade

This commit is contained in:
2024-05-30 15:46:00 +08:00
parent f985ed2017
commit 5c5ba609cb
4 changed files with 120 additions and 0 deletions

View File

@@ -1145,4 +1145,47 @@ WHERE
-- end: remove
INSERT INTO
`omc_db`.`sys_menu` (
`menu_id`,
`menu_name`,
`parent_id`,
`menu_sort`,
`path`,
`component`,
`is_frame`,
`is_cache`,
`menu_type`,
`visible`,
`status`,
`perms`,
`icon`,
`create_by`,
`create_time`,
`update_by`,
`update_time`,
`remark`
)
VALUES (
2144,
'menu.fault.event',
2129,
3,
'event',
'faultManage/event/index',
'1',
'0',
'M',
'1',
'1',
'faultManage:event:index',
'icon-tubiaoku',
'supervisor',
1717051993146,
'supervisor',
1717052106943,
''
);
SET FOREIGN_KEY_CHECKS = 1;