RE: DB_MYSQL.SQL



For those that need it, like I did you can add this to the end of
http://wiki.freeradius.org/MySQL_DDL_script to get your database
to create the userinfo table also

#
# Table structure for table 'userinfo'
#
CREATE TABLE userinfo (
 id int(10) NOT NULL auto_increment,
 UserName varchar(30),
 Name varchar(200),
 Mail varchar(200),
 Department varchar(200),
 WorkPhone varchar(200),
 HomePhone varchar(200),
 Mobile varchar(200),
 PRIMARY KEY (id),
 KEY UserName (UserName),
 KEY Departmet (Department)
);







This archive was generated by a fusion of Pipermail (Mailman edition) and MHonArc.