Skip to content
Snippets Groups Projects
Commit 82af1445 authored by Leif Madsen's avatar Leif Madsen
Browse files

Update the sip-friends.sql file to use the non-deprecated 'defaultname'...

Update the sip-friends.sql file to use the non-deprecated 'defaultname' instead of 'username' and remove an extra comma that would cause the script to fail as-is

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@167373 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 483c555c
Branches
Tags
No related merge requests found
......@@ -5,7 +5,7 @@
CREATE TABLE `sipfriends` (
`name` varchar(40) NOT NULL default '',
`type` varchar(10) NOT NULL default '',
`username` varchar(40),
`defaultname` varchar(40),
`fromuser` varchar(40),
`fromdomain` varchar(40),
`secret` varchar(40),
......@@ -50,5 +50,5 @@ CREATE TABLE `sipfriends` (
`setvar` varchar(200),
PRIMARY KEY (`name`),
INDEX host (host, port),
INDEX ipaddr (ipaddr, port),
INDEX ipaddr (ipaddr, port)
) TYPE=MyISAM;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment