mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
4 lines
261 B
SQL
4 lines
261 B
SQL
DELETE n1 FROM pollers n1, pollers n2 WHERE n1.last_polled < n2.last_polled and n1.poller_name = n2.poller_name;
|
|
ALTER TABLE pollers ADD PRIMARY KEY (poller_name);
|
|
ALTER TABLE `devices` ADD `last_poll_attempted` timestamp NULL DEFAULT NULL AFTER `last_polled`;
|