2014-06-23 Alejandro Gallardo <alejandro.gallardo@artica.es>

* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql: Fixed
	some queries.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10263 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
alexhigh 2014-06-23 15:09:44 +00:00
parent 7c8c0123e7
commit 077d835206
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2014-06-23 Alejandro Gallardo <alejandro.gallardo@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql: Fixed
some queries.
2014-06-23 Alejandro Gallardo <alejandro.gallardo@artica.es>
* godmode/gis_maps/configure_gis_map.php: Visual changes

View File

@ -48,7 +48,7 @@ INSERT INTO `tconfig_os` (`name`, `description`, `icon_name`) VALUES ('Satellite
-- ---------------------------------------------------------------------
-- Table `tagente_modulo`
-- ---------------------------------------------------------------------
ALTER TABLE `pandora`.`tagente_modulo` MODIFY COLUMN `post_process` DOUBLE DEFAULT NULL;
ALTER TABLE `tagente_modulo` MODIFY COLUMN `post_process` DOUBLE DEFAULT NULL;
/* 2014/05/21 */
ALTER TABLE `tagente_modulo` ADD COLUMN `min_ff_event_normal` int(4) unsigned default '0';
ALTER TABLE `tagente_modulo` ADD COLUMN `min_ff_event_warning` int(4) unsigned default '0';
@ -67,10 +67,8 @@ CREATE TABLE IF NOT EXISTS `tmodule_relationship` (
`module_b` int(10) unsigned NOT NULL,
`disable_update` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
FOREIGN KEY (`module_a`) REFERENCES tagente_modulo(`id_agente_modulo`)
ON DELETE CASCADE,
FOREIGN KEY (`module_b`) REFERENCES tagente_modulo(`id_agente_modulo`)
ON DELETE CASCADE
FOREIGN KEY (`module_a`) REFERENCES tagente_modulo(`id_agente_modulo`) ON DELETE CASCADE,
FOREIGN KEY (`module_b`) REFERENCES tagente_modulo(`id_agente_modulo`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------------------