mirror of https://github.com/sipwise/db-schema.git
* 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: I633838d2bbf6f346de0a9e97dcfd9234060e334echanges/81/15181/1
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…
Reference in new issue