You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15136.up

16 lines
734 B

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;