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:
parent
2c13118198
commit
6ee8335b7c
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue