[Openfirst-cvscommit] logger/setup setup.mysql,1.1,1.2
Brought to you by:
xtimg
From: <xt...@us...> - 2003-06-21 15:51:40
|
Update of /cvsroot/openfirst/logger/setup In directory sc8-pr-cvs1:/tmp/cvs-serv25409/setup Modified Files: setup.mysql Log Message: Change MySQL script to conform with new standard. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/logger/setup/setup.mysql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** setup.mysql 8 Jun 2003 02:23:08 -0000 1.1 --- setup.mysql 21 Jun 2003 15:51:37 -0000 1.2 *************** *** 1,10 **** ! CREATE TABLE `ofirst_logger` ( ! `ID` int(6) unsigned NOT NULL auto_increment, ! `IPAddress` tinytext, ! `Date` tinytext, ! `Location` tinytext, ! `QueryString` tinytext, ! `HostLookup` tinytext, ! `Browser` tinytext, ! PRIMARY KEY (`ID`) ! ) TYPE=MyISAM; \ No newline at end of file --- 1 ---- ! CREATE TABLE `ofirst_logger` (`ID` int(6) unsigned NOT NULL auto_increment, `IPAddress` tinytext, `Date` tinytext, `Location` tinytext, `QueryString` tinytext, `HostLookup` tinytext, `Browser` tinytext, PRIMARY KEY (`ID`)) TYPE=MyISAM; |