Fixed copy is_secondary to no_hierarchy in mr 19
This commit is contained in:
parent
965a0fa8ce
commit
4678c0df53
pandora_console/extras/mr
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue