Update of /cvsroot/openfirst/messenger/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv25719/setup
Modified Files:
setup.mysql
Log Message:
Change MySQL script to conform with new standard.
Index: setup.mysql
===================================================================
RCS file: /cvsroot/openfirst/messenger/setup/setup.mysql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** setup.mysql 21 Jun 2003 13:03:51 -0000 1.2
--- setup.mysql 21 Jun 2003 15:53:24 -0000 1.3
***************
*** 1,19 ****
! CREATE TABLE `ofirst_messages` (
! `ID` int(6) unsigned NOT NULL auto_increment,
! `Sender` tinytext,
! `Receiver` tinytext,
! `Subject` tinytext,
! `Body` text,
! `Status` tinytext,
! `Date` tinytext,
! PRIMARY KEY (`ID`)
! ) TYPE=MyISAM;
!
! CREATE TABLE `ofirst_usersonline` (
! `ID` int(6) unsigned NOT NULL auto_increment,
! `IPAddress` tinytext,
! `Location` tinytext,
! `Timestamp` text,
! `Member` tinytext,
! PRIMARY KEY (`ID`)
! ) TYPE=MyISAM;
\ No newline at end of file
--- 1,2 ----
! CREATE TABLE `ofirst_messages` (`ID` int(6) unsigned NOT NULL auto_increment, `Sender` tinytext, `Receiver` tinytext, `Subject` tinytext, `Body` text, `Status` tinytext, `Date` tinytext, PRIMARY KEY (`ID`)) TYPE=MyISAM;
! CREATE TABLE `ofirst_usersonline` (`ID` int(6) unsigned NOT NULL auto_increment, `IPAddress` tinytext, `Location` tinytext, `Timestamp` text, `Member` tinytext, PRIMARY KEY (`ID`)) TYPE=MyISAM;
|