Update of /cvsroot/openfirst/messenger/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv14220/setup
Added Files:
setup.mssql
Log Message:
Replace mysql functions with new database functions, allowing multiple database types to be used easily.
--- NEW FILE: setup.mssql ---
CREATE TABLE `ofirst_messenger_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_messenger_usersonline` (`ID` int(6) unsigned NOT NULL auto_increment, `IPAddress` tinytext, `Location` tinytext, `Timestamp` text, `Member` tinytext, PRIMARY KEY (`ID`)) TYPE=MyISAM;
INSERT INTO ofirst_config SET modulename='messenger',showonmenu='0',active='0',modulenavigation='<a href="$basepath/messenger/">Users Online</a> | <a href="$basepath/messenger/inbox.php">Inbox</a> | <a href="$basepath/messenger/newmsg.php">Send Message</a>',includes='messenger.php';
|