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/13140.up

11 lines
322 B

USE provisioning;
set autocommit=0;
SELECT id FROM voip_preferences WHERE attribute='outbound_socket' INTO @pref_id;
UPDATE voip_preferences SET usr_pref=0, dom_pref=0 WHERE id=@pref_id;
DELETE FROM voip_usr_preferences WHERE attribute_id=@pref_id;
DELETE FROM voip_dom_preferences WHERE attribute_id=@pref_id;
commit;