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

9 lines
310 B

use provisioning;
set autocommit=0;
INSERT INTO voip_sound_groups (name) values ('malicious_call_identification');
SELECT id into @mcid_id from voip_sound_groups where name = 'malicious_call_identification';
INSERT INTO voip_sound_handles (name, group_id) VALUES ('malicious_call_report', @mcid_id);
commit;