mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
4 lines
296 B
MySQL
4 lines
296 B
MySQL
![]() |
ALTER TABLE `notifications` CHANGE `datetime` `datetime` timestamp NOT NULL DEFAULT '1970-01-02 00:00:00';
|
||
|
ALTER TABLE `notifications` ADD `severity` INT DEFAULT 0 NULL COMMENT '0=ok,1=warning,2=critical' AFTER `body`;
|
||
|
CREATE INDEX `notifications_severity_index` ON `notifications` (`severity`);
|