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:
parent
7d7ccc1c5e
commit
1f75308ba9
|
@ -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>
|
2012-02-03 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* pandoradb_data.sql,
|
* pandoradb_data.sql,
|
||||||
|
|
|
@ -114,4 +114,9 @@ ALTER TABLE `talert_snmp` ADD COLUMN (`_snmp_f1_` text DEFAULT '', `_snmp_f2_` t
|
||||||
-- Table `tagente_modulo`
|
-- Table `tagente_modulo`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
ALTER TABLE `tagente_modulo` ADD COLUMN `module_ff_interval` int(4) unsigned default '0';
|
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;
|
||||||
|
|
|
@ -169,7 +169,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
|
||||||
`plugin_pass` text default '',
|
`plugin_pass` text default '',
|
||||||
`plugin_parameter` text,
|
`plugin_parameter` text,
|
||||||
`id_plugin` int(10) default '0',
|
`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',
|
`prediction_module` bigint(14) default '0',
|
||||||
`max_timeout` int(4) unsigned default '0',
|
`max_timeout` int(4) unsigned default '0',
|
||||||
`custom_id` varchar(255) default '',
|
`custom_id` varchar(255) default '',
|
||||||
|
@ -566,7 +566,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_component` (
|
||||||
`custom_string_3` text default '',
|
`custom_string_3` text default '',
|
||||||
`custom_integer_1` int(10) default 0,
|
`custom_integer_1` int(10) default 0,
|
||||||
`custom_integer_2` 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`)
|
PRIMARY KEY (`id_nc`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue