mirror of https://github.com/sipwise/db-schema.git
Change-Id: I4654478b8a4c4f13956deb5e01c0e11220c4169a
(cherry picked from commit d84ef78e5a)
changes/03/16303/1
parent
f237f2b4ad
commit
e8226b854c
@ -0,0 +1,9 @@
|
||||
USE provisioning;
|
||||
set autocommit=0;
|
||||
|
||||
delete from voip_sound_handles where name = 'aa_star_for';
|
||||
delete from voip_sound_handles where name = 'aa_star_option';
|
||||
delete from voip_sound_handles where name = 'aa_enter_extension';
|
||||
delete from voip_sound_handles where name = 'aa_invalid_extension';
|
||||
|
||||
commit;
|
||||
@ -0,0 +1,10 @@
|
||||
USE provisioning;
|
||||
set autocommit=0;
|
||||
|
||||
select id into @vsg from voip_sound_groups where name = 'pbx';
|
||||
insert into voip_sound_handles values(NULL, 'aa_star_for', @vsg);
|
||||
insert into voip_sound_handles values(NULL, 'aa_star_option', @vsg);
|
||||
insert into voip_sound_handles values(NULL, 'aa_enter_extension', @vsg);
|
||||
insert into voip_sound_handles values(NULL, 'aa_invalid_extension', @vsg);
|
||||
|
||||
commit;
|
||||
Loading…
Reference in new issue