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/15303.down

12 lines
461 B

USE provisioning;
delete from voip_preferences where attribute = 'cfs';
delete from voip_cf_mappings where type = 'cfs';
alter table voip_cf_mappings change column type type enum ('cfu','cfb','cfna','cft') not null default 'cfu';
alter table sms_journal change column direction direction enum('in','out') not null default 'in';
USE accounting;
alter table cdr change column call_type call_type enum('call','cfu','cft','cfb','cfna') not null default 'call';