Fix cluster id_os bug - #2090

This commit is contained in:
enriquecd 2018-03-20 15:42:37 +01:00
parent 972e394a8e
commit 19b566d4c2
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
START TRANSACTION;
UPDATE `tagente` SET `id_os` = 100 WHERE `id_os` = 21 and (select `id_os` from `tconfig_os` WHERE `id_os` = 21 and `name` = 'Cluster');
DELETE FROM `tconfig_os` where `id_os` = 21 and `name` = 'Cluster';
COMMIT;