mirror of https://github.com/sipwise/db-schema.git
Change-Id: Icf9f5c4c1ad864147689cccd74ea715abb4f4b72changes/15/815/1
parent
328881f68c
commit
21bf3c51e5
@ -0,0 +1,15 @@
|
||||
USE provisioning
|
||||
set autocommit=0;
|
||||
|
||||
INSERT INTO voip_sound_groups VALUES (NULL, 'conference');
|
||||
SELECT last_insert_id() INTO @grp_id;
|
||||
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_greeting', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_pin', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_pin_wrong', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_joined', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_join', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('conference_leave', @grp_id);
|
||||
INSERT INTO voip_sound_handles (name,group_id) VALUES ('goodbye', @grp_id);
|
||||
|
||||
commit;
|
||||
Loading…
Reference in new issue