2009-12-28 Sancho Lerena <slerena@artica.es>

* pandoradb.sql: tnetwork_component double(18,13) -> double
        (18,3) by a typo !¡¿?. That is the type for tagente_modulo.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2248 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2009-12-28 15:52:17 +00:00
parent 80f4b18a34
commit b4a25ce857
2 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,8 @@
2009-12-28 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: tnetwork_component double(18,13) -> double (18,3) by
a typo !¡¿?. That is the type for tagente_modulo.
* includes/languages/* : Updated languages for 3.0 final release.
* include/config_process: Fixed problems detected in system/user

View File

@ -488,10 +488,10 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` (
`plugin_parameter` text,
`max_timeout` tinyint(3) unsigned default '0',
`history_data` tinyint(1) unsigned default '1',
`min_warning` double(18,13) default 0,
`max_warning` double(18,13) default 0,
`min_critical` double(18,13) default 0,
`max_critical` double(18,13) default 0,
`min_warning` double(18,2) default 0,
`max_warning` double(18,2) default 0,
`min_critical` double(18,2) default 0,
`max_critical` double(18,2) default 0,
`min_ff_event` int(4) unsigned default '0',
PRIMARY KEY (`id_nc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;