2010-08-03 Sergio Martin <sergio.martin@artica.es>

* pandoradb.sql
	extras/pandoradb_migrate_v3.1_to_v3.2.sql: Added a id_policy_module
	field into agente_modulo table for future use



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3087 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-08-03 11:23:16 +00:00
parent 0c9d9ee100
commit a80b95535e
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2010-08-03 Sergio Martin <sergio.martin@artica.es>
* pandoradb.sql
extras/pandoradb_migrate_v3.1_to_v3.2.sql: Added a id_policy_module
field into agente_modulo table for future use
2010-08-03 Junichi Satoh <junichi@rworks.jp>
* godmode/alerts/alert_list.list.php: Fixed a problem alert filtering

View File

@ -61,3 +61,9 @@ CREATE TABLE IF NOT EXISTS `tnetwork_map` (
`contracted_nodes` TEXT,
PRIMARY KEY (`id_networkmap`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -----------------------------------------------------
-- Table `tagente_modulo`
-- -----------------------------------------------------
ALTER TABLE `tagente_modulo` ADD COLUMN `id_policy_module` INTEGER UNSIGNED NOT NULL DEFAULT 0 AFTER `nombre`;

View File

@ -146,6 +146,7 @@ CREATE TABLE IF NOT EXISTS `tagente_modulo` (
`id_tipo_modulo` smallint(5) NOT NULL default '0',
`descripcion` varchar(100) NOT NULL default '',
`nombre` varchar(100) NOT NULL default '',
`id_policy_module` INTEGER unsigned NOT NULL default '0',
`max` bigint(20) default '0',
`min` bigint(20) default '0',
`module_interval` int(4) unsigned default '0',