diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index dd2f5b9aeb..334691fc01 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2013-01-30 Juan Manuel Ramon + + * 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 + meta_num_elements token to tconfig in pandora db dump. + 2013-01-30 Miguel de Dios * godmode/agentes/modificar_agente.php: fixed the menu to showing diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql index f6a8ab979a..166d9b9962 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql @@ -236,7 +236,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('compare_pass', 3), ('meta_style', 'meta_pandora'), ('enable_refr', 0), - ('show_vc', 1); + ('show_vc', 1), + ('meta_num_elements', 100); UPDATE tconfig SET `value`='comparation' WHERE `token`= 'prominent_time'; -- ---------------------------------------------------------------------- diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql index b7e9963b2f..a0f1c30277 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql @@ -281,6 +281,7 @@ INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3); 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); -- ----------------------------------------------------- -- Table tpassword_history diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql index 0f393debed..7014ac17f1 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql @@ -296,7 +296,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES ('compare_pass', 3), ('meta_style', 'meta_pandora'), ('enable_refr', 0), -('show_vc', 1); +('show_vc', 1), +('meta_num_elements', 100); -- ----------------------------------------------------- -- Table "tpassword_history"