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

13 lines
407 B

USE provisioning;
ALTER TABLE voip_preferences ADD COLUMN
expose_to_customer TINYINT(1) NOT NULL DEFAULT 0 AFTER internal;
UPDATE voip_preferences SET expose_to_customer=1 WHERE attribute IN (
'block_in_clir', 'block_in_list', 'block_in_mode',
'block_out_list', 'block_out_mode', 'block_out_override_pin',
'clir', 'ncos'
);
UPDATE voip_preferences SET internal=1 WHERE attribute='ringtimeout';