diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0f1fbb213e..3e70653ae9 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,13 @@ +2013-01-21 Juan Manuel Ramon + + 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: switch to show + or hide visual console. + 2013-01-18 Juan Manuel Ramon * include/functions_menu.php 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 85786d6c4c..8acb9416fd 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 @@ -235,7 +235,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('enable_pass_history', 0), ('compare_pass', 3), ('meta_style', 'meta_pandora'), - ('enable_refr', 0); + ('enable_refr', 0), + ('show_vc', 1); 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 4a67a5c189..77eb85e34f 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 @@ -278,6 +278,7 @@ INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0); 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); -- ----------------------------------------------------- -- 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 cd3dcb4300..fabb4c9a3e 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 @@ -293,7 +293,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES ('enable_pass_history', 0), ('compare_pass', 3), ('meta_style', 'meta_pandora'), -('enable_refr', 0); +('enable_refr', 0), +('show_vc', 1); -- ----------------------------------------------------- -- Table "tpassword_history" diff --git a/pandora_console/pandoradb.data.oracle.sql b/pandora_console/pandoradb.data.oracle.sql index f812152bf8..be2ee86d24 100644 --- a/pandora_console/pandoradb.data.oracle.sql +++ b/pandora_console/pandoradb.data.oracle.sql @@ -110,6 +110,7 @@ INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0); 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); COMMIT; END;; diff --git a/pandora_console/pandoradb.data.postgreSQL.sql b/pandora_console/pandoradb.data.postgreSQL.sql index 4223a8b30c..635a9dd3a2 100644 --- a/pandora_console/pandoradb.data.postgreSQL.sql +++ b/pandora_console/pandoradb.data.postgreSQL.sql @@ -105,7 +105,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES ('enable_refr', '0'), ('meta_num_elements', 100), ('update_manager_installed', 1), -('num_files_attachment', 100); +('num_files_attachment', 100), +('show_vc', 1); COMMIT WORK; diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index d15a4e2350..81601f014f 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -104,7 +104,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('enable_refr', 0), ('meta_num_elements', 100), ('update_manager_installed', 1), -('num_files_attachment', 100); +('num_files_attachment', 100), +('show_vc', 1); UNLOCK TABLES;