2013-03-05 Sergio Martin <sergio.martin@artica.es>

* pandoradb_data.sql
	pandoradb.data.postgreSQL.sql
	pandoradb.data.oracle.sql
	extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql
	extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql
	extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added CPU
	and Process inventory change types to black list in default 
	SQL data script for bug 3606111



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7787 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2013-03-05 16:59:18 +00:00
parent 4af01ca236
commit 2aef529f1d
7 changed files with 21 additions and 4 deletions

View File

@ -1,3 +1,14 @@
2013-03-05 Sergio Martin <sergio.martin@artica.es>
* pandoradb_data.sql
pandoradb.data.postgreSQL.sql
pandoradb.data.oracle.sql
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added CPU
and Process inventory change types to black list in default
SQL data script for bug 3606111
2013-03-05 Miguel de Dios <miguel.dedios@artica.es>
* extensions/snmp_explorer.php: improved the code style.

View File

@ -237,7 +237,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('meta_style', 'meta_pandora'),
('enable_refr', 0),
('show_vc', 1),
('meta_num_elements', 100);
('meta_num_elements', 100),
('inventory_changes_blacklist', '1,2,20,21');
UPDATE tconfig SET `value`='comparation' WHERE `token`= 'prominent_time';
-- ----------------------------------------------------------------------

View File

@ -282,6 +282,7 @@ INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0);
INSERT INTO tconfig (token, value) VALUES ('show_vc', 1);
INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 1);
INSERT INTO tconfig (token, value) VALUES ('inventory_changes_blacklist', '1,2,20,21');
-- -----------------------------------------------------
-- Table tpassword_history

View File

@ -297,7 +297,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
('meta_style', 'meta_pandora'),
('enable_refr', 0),
('show_vc', 1),
('meta_num_elements', 100);
('meta_num_elements', 100),
('inventory_changes_blacklist', '1,2,20,21');
-- -----------------------------------------------------
-- Table "tpassword_history"

View File

@ -111,6 +111,7 @@ INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 100);
INSERT INTO tconfig (token, value) VALUES ('update_manager_installed', 1);
INSERT INTO tconfig (token, value) VALUES ('num_files_attachment', 100);
INSERT INTO tconfig (token, value) VALUES ('show_vc', 1);
INSERT INTO tconfig (token, value) VALUES ('inventory_changes_blacklist', '1,2,20,21');
COMMIT;
END;;

View File

@ -106,7 +106,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
('meta_num_elements', 100),
('update_manager_installed', 1),
('num_files_attachment', 100),
('show_vc', 1);
('show_vc', 1),
('inventory_changes_blacklist', '1,2,20,21');
COMMIT WORK;

View File

@ -93,7 +93,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('meta_num_elements', 100),
('update_manager_installed', 1),
('num_files_attachment', 250),
('show_vc', 1);
('show_vc', 1),
('inventory_changes_blacklist', '1,2,20,21');
UNLOCK TABLES;