mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 00:16:21 +02: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` ;
|