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/15572_not_replicated.down

23 lines
1.1 KiB

USE provisioning;
SET AUTOCOMMIT=0;
SET sql_log_bin=0;
SELECT id INTO @vp_attr_id FROM voip_preferences WHERE attribute='serial_forking_by_q_value';
DELETE FROM voip_preferences_enum WHERE preference_id=@vp_attr_id;
UPDATE voip_preferences SET
data_type = 'boolean',
type = 1,
description = "Check the box if you want to perform serial forking based on q-value instead of parallel forking for registered contacts"
WHERE id = @vp_attr_id;
DELETE FROM voip_usr_preferences WHERE value <> 'standard' AND value <> 'probability' AND attribute_id = @vp_attr_id;
UPDATE voip_usr_preferences SET value = 1 WHERE value in ('standard','probability') AND attribute_id = @vp_attr_id;
DELETE FROM voip_dom_preferences WHERE value <> 'standard' AND value <> 'probability' AND attribute_id = @vp_attr_id;
UPDATE voip_dom_preferences SET value = 1 WHERE value in ('standard','probability') AND attribute_id = @vp_attr_id;
UPDATE kamailio.usr_preferences SET type = 1 WHERE attribute='serial_forking_by_q_value';
UPDATE kamailio.dom_preferences SET type = 1 WHERE attribute='serial_forking_by_q_value';
COMMIT;