diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0dadb06868..22feadea12 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2007-12-14 Sancho Lerena + + * pandoradb.sql: BUG FIXED, generic_data_inc data don't work with + small float data. Need to alter tagente_datos_inc table for field + "datos. + 2007-11-19 Sancho Lerena * index.php: Included patch summited by Guru Evi (guruevi) for HTTPS support. THanks evi ! :) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 4f5fd617a0..1e750c1fea 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -62,7 +62,7 @@ CREATE TABLE `tagente_datos` ( CREATE TABLE `tagente_datos_inc` ( `id_adi` bigint(20) unsigned NOT NULL auto_increment, `id_agente_modulo` bigint(20) NOT NULL default '0', - `datos` bigint(12) default NULL, + `datos` double(18,2) default NULL, `timestamp` datetime NOT NULL default '0000-00-00 00:00:00', `utimestamp` int(10) unsigned default '0', PRIMARY KEY (`id_adi`),