mirror of https://github.com/sipwise/db-schema.git
Added new option extended_send_primary_plus_extension inside extended_dialing_mode enum to enable a new extended mode allowing to user to send the primary number + the extension Change-Id: Ide1afe1b664be7dd499d203c26afb5ec8b42ba6bmr10.0
parent
7348867964
commit
2cc7ffe39b
@ -0,0 +1,5 @@
|
||||
USE provisioning;
|
||||
|
||||
select id into @voipprefsid from voip_preferences where attribute ='extended_dialing_mode';
|
||||
|
||||
delete from voip_preferences_enum where preference_id=@voipprefsid and value='extended_send_primary_plus_extension';
|
||||
@ -0,0 +1,15 @@
|
||||
USE provisioning;
|
||||
SET autocommit=0;
|
||||
|
||||
select id into @voipprefsid from voip_preferences where attribute ='extended_dialing_mode';
|
||||
|
||||
INSERT INTO voip_preferences_enum SET
|
||||
preference_id = @voipprefsid,
|
||||
label = 'Extended matching, send primary number with extension',
|
||||
value = 'extended_send_primary_plus_extension',
|
||||
usr_pref = 1,
|
||||
dom_pref = 1,
|
||||
peer_pref = 0,
|
||||
prof_pref = 1;
|
||||
|
||||
COMMIT;
|
||||
Loading…
Reference in new issue