TT#21263 add kamailio.acc_backup and acc_trash as not_replicated

* kamailio.acc_backup and kamailio.acc_trash are not replicated
      and therefore, changes to those tables must be done separately
      for sp1 and sp2

Change-Id: I633838d2bbf6f346de0a9e97dcfd9234060e334e
changes/81/15181/1
Kirill Solomko 8 years ago
parent c482b30217
commit 1d7714c459

@ -0,0 +1,10 @@
use kamailio;
SET sql_log_bin=0;
alter table acc_backup
modify from_tag varchar(64) NOT NULL DEFAULT '',
modify to_tag varchar(64) NOT NULL DEFAULT '';
alter table acc_trash
modify from_tag varchar(64) NOT NULL DEFAULT '',
modify to_tag varchar(64) NOT NULL DEFAULT '';

@ -0,0 +1,10 @@
use kamailio;
set sql_log_bin=0;
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 '';
Loading…
Cancel
Save