diff --git a/db_scripts/diff/15111.down b/db_scripts/diff/15111.down new file mode 100644 index 00000000..725cc262 --- /dev/null +++ b/db_scripts/diff/15111.down @@ -0,0 +1,4 @@ +use provisioning + +DELETE FROM voip_sound_handles WHERE name IN ('you_have_in_your_account', 'units', 'and', 'cents'); +DELETE FROM voip_sound_groups WHERE name = 'play_balance'; diff --git a/db_scripts/diff/15111.up b/db_scripts/diff/15111.up new file mode 100644 index 00000000..98b04908 --- /dev/null +++ b/db_scripts/diff/15111.up @@ -0,0 +1,9 @@ +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);