2012-02-03 Miguel de Dios <miguel.dedios@artica.es>

* pandoradb.sql, extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: change the
	size of the field "post_process" in the tables "tagente_modulo" and
	"tnetwork_component".
	
	Fixes: #3483814 



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5486 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2012-02-03 12:43:22 +00:00
parent 6ca8e2cc11
commit ac64e51233
3 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2012-02-03 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql: change the
size of the field "post_process" in the tables "tagente_modulo" and
"tnetwork_component".
Fixes: #3483814
2012-02-03 Ramon Novoa <rnovoa@artica.es>
* pandoradb_data.sql,

View File

@ -114,4 +114,9 @@ ALTER TABLE `talert_snmp` ADD COLUMN (`_snmp_f1_` text DEFAULT '', `_snmp_f2_` t
-- Table `tagente_modulo`
-- -----------------------------------------------------
ALTER TABLE `tagente_modulo` ADD COLUMN `module_ff_interval` int(4) unsigned default '0';
ALTER TABLE `tagente_modulo` CHANGE COLUMN `post_process` `post_process` double(18,5) default NULL;
-- -----------------------------------------------------
-- Table `tnetwork_component`
-- -----------------------------------------------------
ALTER TABLE `tnetwork_component` CHANGE COLUMN `post_process` `post_process` double(18,5) default NULL;

View File

@ -169,7 +169,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
`plugin_pass` text default '',
`plugin_parameter` text,
`id_plugin` int(10) default '0',
`post_process` double(18,13) default NULL,
`post_process` double(18,5) default NULL,
`prediction_module` bigint(14) default '0',
`max_timeout` int(4) unsigned default '0',
`custom_id` varchar(255) default '',
@ -566,7 +566,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` (
`custom_string_3` text default '',
`custom_integer_1` int(10) default 0,
`custom_integer_2` int(10) default 0,
`post_process` double(18,13) default 0,
`post_process` double(18,5) default 0,
PRIMARY KEY (`id_nc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;