mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
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/branches/1.8@317484 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -15,7 +15,7 @@ CREATE TABLE meetme (
|
|||||||
recordingformat char(10) NULL,
|
recordingformat char(10) NULL,
|
||||||
maxusers int(11) NULL,
|
maxusers int(11) NULL,
|
||||||
members integer DEFAULT 0 NOT NULL,
|
members integer DEFAULT 0 NOT NULL,
|
||||||
index confno (confno,starttime,endtime)
|
index confno (confno,starttime,endtime),
|
||||||
PRIMARY KEY (bookid),
|
PRIMARY KEY (bookid)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -51,5 +51,5 @@ CREATE TABLE `sipfriends` (
|
|||||||
`setvar` varchar(200),
|
`setvar` varchar(200),
|
||||||
PRIMARY KEY (`name`),
|
PRIMARY KEY (`name`),
|
||||||
INDEX host (host, port),
|
INDEX host (host, port),
|
||||||
INDEX ipaddr (ipaddr, port),
|
INDEX ipaddr (ipaddr, port)
|
||||||
) TYPE=MyISAM;
|
) ENGINE=MyISAM;
|
||||||
|
|||||||
Reference in New Issue
Block a user