mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
3 lines
209 B
SQL
3 lines
209 B
SQL
-- Update to add ping response time and last ping datetime
|
|
ALTER TABLE `devices` ADD `last_ping` TIMESTAMP NULL AFTER `last_discovered` , ADD `last_ping_timetaken` DOUBLE( 5, 2 ) NULL AFTER `last_ping` ;
|