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

13 lines
383 B

USE provisioning;
SET autocommit=0;
SELECT `id` FROM `voip_preferences`
WHERE attribute='announce_conn_type'
INTO @pref_id;
DELETE FROM `voip_usr_preferences` WHERE attribute_id = @pref_id and value = "";
DELETE FROM `voip_dom_preferences` WHERE attribute_id = @pref_id and value = "";
DELETE FROM `voip_prof_preferences` WHERE attribute_id = @pref_id and value = "";
COMMIT;