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/15875.down

21 lines
344 B

USE provisioning;
SET autocommit=0;
SELECT id INTO @vp_id FROM voip_preferences
WHERE attribute = 'call_log_level';
UPDATE voip_preferences
SET type = 1
WHERE id = @vp_id;
use kamailio;
UPDATE usr_preferences
SET type = 1
WHERE attribute = 'call_log_level';
UPDATE peer_preferences
SET type = 1
WHERE attribute = 'call_log_level';
COMMIT;