MT#8129 add conference sound group and handles

Change-Id: Icf9f5c4c1ad864147689cccd74ea715abb4f4b72
changes/15/815/1
Andrew Pogrebennyk 11 years ago
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…
Cancel
Save