git-svn-id: svn://192.168.202.10@2888 3d104415-ff17-0410-8863-d5cf3c621b8a

This commit is contained in:
jamesp
2018-01-10 18:15:35 +00:00
parent ee3c5097e9
commit b5e1dc0374
55 changed files with 4266 additions and 0 deletions
@@ -0,0 +1,4 @@
use opensips;
ALTER TABLE `acc` ADD `sip_from` CHAR(64) NOT NULL AFTER `created`, ADD `sip_to` CHAR(64) NOT NULL AFTER `sip_from`, ADD `destination_ip` CHAR(64) NOT NULL AFTER `sip_to`, ADD `source_ip` CHAR(64) NOT NULL AFTER `destination_ip`, ADD `direction` ENUM('Term','Orig') NOT NULL DEFAULT 'Term' AFTER `source_ip`, ADD `failure` ENUM('Y','N') NOT NULL DEFAULT 'N' AFTER `direction`;
use opensips_local;
ALTER TABLE `acc` ADD `sip_from` CHAR(64) NOT NULL AFTER `created`, ADD `sip_to` CHAR(64) NOT NULL AFTER `sip_from`, ADD `destination_ip` CHAR(64) NOT NULL AFTER `sip_to`, ADD `source_ip` CHAR(64) NOT NULL AFTER `destination_ip`, ADD `direction` ENUM('Term','Orig') NOT NULL DEFAULT 'Term' AFTER `source_ip`, ADD `failure` ENUM('Y','N') NOT NULL DEFAULT 'N' AFTER `direction`;