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

10 lines
309 B

SET autocommit=0;
USE provisioning;
SELECT id INTO @pref_id FROM provisioning.voip_preferences WHERE attribute = 'force_outbound_calls_to_peer';
UPDATE provisioning.voip_preferences_enum SET label='use domain defalut'
WHERE preference_id=@pref_id AND value IS NULL AND label='use domain default';
COMMIT;