From 33bb4ae16454b9d7b6efb79dbda0dcea69d5f14b Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Tue, 10 Aug 2010 12:34:21 +0000 Subject: [PATCH] 2010-08-10 Sergio Martin * pandoradb.sql extras/pandoradb_migrate_v3.1_to_v3.2.sql: Fixed the creation of tnetwork_map table creation adding the missed column 'center' git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3122 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql | 1 + pandora_console/pandoradb.sql | 1 + 3 files changed, 8 insertions(+) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index fe86765ce4..6f28a71643 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-08-10 Sergio Martin + + * pandoradb.sql + extras/pandoradb_migrate_v3.1_to_v3.2.sql: Fixed the creation of + tnetwork_map table creation adding the missed column 'center' + 2010-08-10 Ramon Novoa * godmode/setup/setup_auth.php: Fixed blacklist id in javascript diff --git a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql index 01d5ec7a31..02660e3847 100644 --- a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql +++ b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql @@ -58,6 +58,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_map` ( `hide_policy_modules` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `zoom` FLOAT UNSIGNED NOT NULL DEFAULT 1, `distance_nodes` FLOAT UNSIGNED NOT NULL DEFAULT 2.5, + `center` INT UNSIGNED NOT NULL DEFAULT 0, `contracted_nodes` TEXT, PRIMARY KEY (`id_networkmap`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 02ad69238b..adc304da5f 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1121,6 +1121,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_map` ( `hide_policy_modules` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `zoom` FLOAT UNSIGNED NOT NULL DEFAULT 1, `distance_nodes` FLOAT UNSIGNED NOT NULL DEFAULT 2.5, + `center` INT UNSIGNED NOT NULL DEFAULT 0, `contracted_nodes` TEXT, PRIMARY KEY (`id_networkmap`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;