diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 8d82fec6c5..76c9c54637 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-01-25 Pablo de la Concepción + + * extras/pandoradb_migrate_v3.0_to_v3.1.sql: Added group column to control + ACLs as it was done in pandoradb.sql. + 2010-01-25 Miguel de Dios * pandoradb.sql: add the group column for SLA purposes. diff --git a/pandora_console/extras/pandoradb_migrate_v3.0_to_v3.1.sql b/pandora_console/extras/pandoradb_migrate_v3.0_to_v3.1.sql index 59f5b7c8bc..a503f71fd8 100644 --- a/pandora_console/extras/pandoradb_migrate_v3.0_to_v3.1.sql +++ b/pandora_console/extras/pandoradb_migrate_v3.0_to_v3.1.sql @@ -72,6 +72,7 @@ CREATE TABLE IF NOT EXISTS `tgis_map_connection` ( `initial_longitude` DOUBLE NULL COMMENT 'longitude of the center of the map when it\'s loaded' , `initial_latitude` DOUBLE NULL COMMENT 'latitude of the center of the map when it\'s loaded' , `initial_altitude` DOUBLE NULL COMMENT 'altitude of the center of the map when it\'s loaded' , + `group_id` INT(10) NOT NULL DEFAULT 0 COMMENT 'Group that owns the map', PRIMARY KEY (`id_tmap_connection`) ) ENGINE = InnoDB COMMENT = 'Table to store the map connection information';