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;