mirror of https://github.com/sipwise/db-schema.git
Change-Id: I8fec916657bee35ecf6d3f090c15b1b65ef14be8mr3.6.1
parent
5a58058dec
commit
50a6588e8d
@ -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';
|
@ -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);
|
Loading…
Reference in new issue