You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15872.down

18 lines
562 B

USE provisioning;
SET autocommit=0;
SELECT id INTO @vp_id FROM voip_preferences
WHERE attribute = 'call_log_level';
UPDATE voip_preferences
SET attribute = 'log_debug'
WHERE id = @vp_id;
UPDATE voip_preferences
SET data_type = 'boolean',
description = "Enable scoped debug logging for subscriber, domain, or peer. When enabled, all log levels for dialogs in this scope are promoted to be recorded regardless of the global proxy log setting. The default is disabled."
WHERE id = @vp_id;
DELETE FROM voip_preferences_enum WHERE preference_id = @vp_id;
COMMIT;