Update of /cvsroot/openfirst/messenger/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv20075/setup
Added Files:
setup.mysql
Log Message:
initial upload
--- NEW FILE: setup.mysql ---
CREATE TABLE `ofirst_messeges` (
`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;
|