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

11 lines
656 B

USE provisioning;
SET autocommit = 0;
DELETE FROM voip_usr_preferences WHERE attribute_id = (SELECT id FROM voip_preferences WHERE attribute = "allow_asymmetric_codecs");
DELETE FROM voip_prof_preferences WHERE attribute_id = (SELECT id FROM voip_preferences WHERE attribute = "allow_asymmetric_codecs");
DELETE FROM voip_dom_preferences WHERE attribute_id = (SELECT id FROM voip_preferences WHERE attribute = "allow_asymmetric_codecs");
DELETE FROM voip_peer_preferences WHERE attribute_id = (SELECT id FROM voip_preferences WHERE attribute = "allow_asymmetric_codecs");
DELETE FROM voip_preferences WHERE attribute = "allow_asymmetric_codecs";
COMMIT;