mirror of https://github.com/sipwise/db-schema.git
Change-Id: I4954085af30424467a2fd28bd211d6948dac0076
(cherry picked from commit 4f65746908)
changes/87/11187/1
parent
e4f3a532c4
commit
417a1b3b07
@ -0,0 +1,4 @@
|
|||||||
|
USE provisioning;
|
||||||
|
|
||||||
|
DELETE FROM voip_preferences_enum
|
||||||
|
WHERE value = 'force_interdomain';
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
USE provisioning;
|
||||||
|
SET autocommit=0;
|
||||||
|
|
||||||
|
SELECT id INTO @vpid FROM voip_preferences
|
||||||
|
WHERE attribute = 'force_outbound_calls_to_peer';
|
||||||
|
|
||||||
|
INSERT INTO voip_preferences_enum
|
||||||
|
(preference_id, label, value, usr_pref, prof_pref, dom_pref, peer_pref, contract_pref, contract_location_pref, dev_pref, devprof_pref, default_val)
|
||||||
|
VALUES (
|
||||||
|
@vpid, 'If caller and callee belong to different domains',
|
||||||
|
'force_interdomain',
|
||||||
|
1, 0, 1, 0, 1, 0, 0, 0, NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
Loading…
Reference in new issue