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

14 lines
351 B

USE provisioning;
SET AUTOCOMMIT=0;
select id into @pref_id from voip_preferences where attribute = 'allowed_clis_reject_policy';
INSERT INTO voip_preferences_enum
(preference_id, label, value, usr_pref, dom_pref, peer_pref, contract_pref, default_val)
VALUES
(@pref_id, 'use domain default', NULL, 0, 0, 0, 1, 1);
COMMIT;
SET AUTOCOMMIT=1;