From 22271cefa405fa6f21d57beefcf77f790eccf062 Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Wed, 30 Jan 2013 16:07:18 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7552 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 7 +++++++ .../extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql | 3 ++- .../extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql | 1 + .../extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql | 3 ++- 4 files changed, 12 insertions(+), 2 deletions(-) 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"