This commit is contained in:
Daniel Cebrian 2024-03-19 11:18:20 +01:00
parent af0f8a4fc4
commit 289e067b6d
2 changed files with 5 additions and 2 deletions

View File

@ -86,6 +86,4 @@ INSERT IGNORE INTO `tcredential_store` (`identifier`, `id_group`, `product`, `ex
; ;
UPDATE `trecon_task` SET `auth_strings` = IF(`auth_strings` = '',CONCAT(@creds_name,`id_rt`),CONCAT(@creds_name,`id_rt`,',',`auth_strings`)) WHERE `snmp_version` = 3 AND `snmp_enabled` = 1; UPDATE `trecon_task` SET `auth_strings` = IF(`auth_strings` = '',CONCAT(@creds_name,`id_rt`),CONCAT(@creds_name,`id_rt`,',',`auth_strings`)) WHERE `snmp_version` = 3 AND `snmp_enabled` = 1;
DELETE FROM tconfig WHERE `token` = 'legacy_database_ha'
COMMIT; COMMIT;

View File

@ -0,0 +1,5 @@
START TRANSACTION;
DELETE FROM tconfig WHERE `token` = 'legacy_database_ha'
COMMIT;