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

11 lines
291 B

USE provisioning;
ALTER TABLE voip_sound_handles
ADD COLUMN expose_to_customer TINYINT(1) DEFAULT 0;
UPDATE voip_sound_handles
SET expose_to_customer=1 WHERE group_id IN (
SELECT id FROM voip_sound_groups WHERE name IN
('pbx', 'music_on_hold', 'digits')
);