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/15111.up

10 lines
431 B

USE provisioning
INSERT INTO voip_sound_groups VALUES (NULL, 'play_balance');
SELECT last_insert_id() INTO @grp_id;
INSERT INTO voip_sound_handles (name,group_id) VALUES ('you_have_in_your_account', @grp_id);
INSERT INTO voip_sound_handles (name,group_id) VALUES ('units', @grp_id);
INSERT INTO voip_sound_handles (name,group_id) VALUES ('and', @grp_id);
INSERT INTO voip_sound_handles (name,group_id) VALUES ('cents', @grp_id);