mirror of https://github.com/sipwise/db-schema.git
Add new prompt (sound handle): aa_timeout to "pbx" group in provisioning.voip_sound_handles table. Change-Id: I24dece40996c1b982fa8b71fd132ab02374c7dedmr9.5.1
parent
1293c69441
commit
055bdb4514
@ -0,0 +1,3 @@
|
||||
USE provisioning;
|
||||
|
||||
DELETE FROM voip_sound_handles WHERE name = 'aa_timeout';
|
@ -0,0 +1,8 @@
|
||||
USE provisioning;
|
||||
SET autocommit=0;
|
||||
|
||||
SELECT id INTO @sgid FROM voip_sound_groups WHERE name = 'pbx';
|
||||
|
||||
INSERT INTO voip_sound_handles (name, group_id, expose_to_customer) VALUES ('aa_timeout', @sgid, 1);
|
||||
|
||||
COMMIT;
|
Loading…
Reference in new issue