Merged revisions 317484 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r317484 | russell | 2011-05-05 18:12:35 -0500 (Thu, 05 May 2011) | 8 lines
  
  Fix some errors in sample MySQL realtime schema files.
  
  (closes issue #18915)
  Reported by: Dovid
  Patches:
        sipfriends.patch uploaded by Dovid (license 652)
        meetme.patch uploaded by Dovid (license 652)
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@317485 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2011-05-05 23:13:04 +00:00
parent 695bc7df94
commit a6a4b811b7
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ CREATE TABLE meetme (
recordingformat char(10) NULL,
maxusers int(11) NULL,
members integer DEFAULT 0 NOT NULL,
index confno (confno,starttime,endtime)
PRIMARY KEY (bookid),
index confno (confno,starttime,endtime),
PRIMARY KEY (bookid)
);

View File

@@ -51,5 +51,5 @@ CREATE TABLE `sipfriends` (
`setvar` varchar(200),
PRIMARY KEY (`name`),
INDEX host (host, port),
INDEX ipaddr (ipaddr, port),
) TYPE=MyISAM;
INDEX ipaddr (ipaddr, port)
) ENGINE=MyISAM;