Added sql schema update for ping graphs

This commit is contained in:
laf
2014-09-30 01:15:33 +01:00
parent 6afaa17a80
commit 8ea7a16e3e

2
sql-schema/035.sql Normal file
View File

@ -0,0 +1,2 @@
-- 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` ;