2010-08-10 Sergio Martin <sergio.martin@artica.es>
* 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
This commit is contained in:
parent
c40051a01c
commit
33bb4ae164
|
@ -1,3 +1,9 @@
|
|||
2010-08-10 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* 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 <rnovoa@artica.es>
|
||||
|
||||
* godmode/setup/setup_auth.php: Fixed blacklist id in javascript
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue