From: Raymond Chandler Date: Fri, 10 Jul 2009 15:27:43 +0000 (+0000) Subject: apparently i forgot to add the intra stuff to mysql... whoops :-\ X-Git-Tag: v1.0.4~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3d0cf2c739785a74ce61d463d81ed23a059a5b6;p=thirdparty%2Ffreeswitch.git apparently i forgot to add the intra stuff to mysql... whoops :-\ git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14197 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_lcr/sql/mysql-5.0.sql b/src/mod/applications/mod_lcr/sql/mysql-5.0.sql index 65feb69ede..abb649d7fe 100644 --- a/src/mod/applications/mod_lcr/sql/mysql-5.0.sql +++ b/src/mod/applications/mod_lcr/sql/mysql-5.0.sql @@ -24,6 +24,7 @@ CREATE TABLE `lcr` ( `id` int(11) NOT NULL auto_increment, `digits` varchar(15) default NULL, `rate` float(11,5) unsigned NOT NULL, + `intra` float(11, 5) unsigned NOT NULL, `carrier_id` int(11) NOT NULL, `lead_strip` int(11) NOT NULL, `trail_strip` int(11) NOT NULL, @@ -41,7 +42,9 @@ CREATE TABLE `lcr` ( KEY `digits` (`digits`), KEY `lcr_profile` (`lcr_profile`), KEY `rate` (`rate`), + KEY `intra` (`intra`), KEY `digits_profile_cid_rate` USING BTREE (`digits`,`rate`), + KEY `digits_profile_cid_intra` USING BTREE (`digits`,`intra`), CONSTRAINT `carrier_id` FOREIGN KEY (`carrier_id`) REFERENCES `carriers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;