Fixed copy is_secondary to no_hierarchy in mr 19

This commit is contained in:
fermin831 2018-08-14 14:16:40 +02:00
parent 965a0fa8ce
commit 4678c0df53
1 changed files with 1 additions and 1 deletions
pandora_console/extras/mr

View File

@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
-- Rename column is_secondary to no_hierarchy in `tusuario _perfil`
-- ---------------------------------------------------------------------
ALTER TABLE `tusuario_perfil` ADD COLUMN `no_hierarchy` tinyint(1) NOT NULL DEFAULT 0;
UPDATE `tusuario_perfil` SET `is_secondary` = `no_hierarchy`;
UPDATE `tusuario_perfil` SET `no_hierarchy` = `is_secondary`;
ALTER TABLE `tusuario_perfil` DROP COLUMN `is_secondary`;
UPDATE `talert_commands` SET name='Monitoring Event' WHERE name='Pandora FMS Event';