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

15 lines
477 B

USE provisioning;
SET AUTOCOMMIT=0;
SELECT id INTO @srtp_vp_id FROM voip_preferences WHERE attribute='srtp_transcoding';
DELETE FROM voip_preferences_enum WHERE preference_id = @srtp_vp_id;
DELETE FROM voip_preferences WHERE id = @srtp_vp_id;
SELECT id INTO @avpf_vp_id FROM voip_preferences WHERE attribute='rtcp_feedback';
DELETE FROM voip_preferences_enum WHERE preference_id = @avpf_vp_id;
DELETE FROM voip_preferences WHERE id = @avpf_vp_id;
COMMIT;
SET AUTOCOMMIT=1;