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

11 lines
392 B

USE provisioning;
set autocommit=0;
select id into @vsg from voip_sound_groups where name = 'pbx';
insert into voip_sound_handles values(NULL, 'aa_star_for', @vsg);
insert into voip_sound_handles values(NULL, 'aa_star_option', @vsg);
insert into voip_sound_handles values(NULL, 'aa_enter_extension', @vsg);
insert into voip_sound_handles values(NULL, 'aa_invalid_extension', @vsg);
commit;