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

30 lines
793 B

use kamailio;
alter table acc
modify from_tag varchar(128) NOT NULL DEFAULT '',
modify to_tag varchar(128) NOT NULL DEFAULT '';
alter table acc_backup
modify from_tag varchar(128) NOT NULL DEFAULT '',
modify to_tag varchar(128) NOT NULL DEFAULT '';
alter table acc_trash
modify from_tag varchar(128) NOT NULL DEFAULT '',
modify to_tag varchar(128) NOT NULL DEFAULT '';
alter table active_watchers
modify from_tag varchar(128) NOT NULL,
modify to_tag varchar(128) NOT NULL;
alter table pua
modify from_tag varchar(128) NOT NULL,
modify to_tag varchar(128) NOT NULL;
alter table rls_watchers
modify from_tag varchar(128) NOT NULL,
modify to_tag varchar(128) NOT NULL;
alter table sca_subscriptions
modify from_tag varchar(128) NOT NULL,
modify to_tag varchar(128) NOT NULL;