Update of /cvsroot/openfirst/messenger/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv30285
Modified Files:
setup.mysql
Log Message:
Edit of setup.mysql to insert module into ofirst_config
Index: setup.mysql
===================================================================
RCS file: /cvsroot/openfirst/messenger/setup/setup.mysql,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** setup.mysql 21 Jun 2003 15:53:24 -0000 1.3
--- setup.mysql 26 Jun 2003 15:23:56 -0000 1.4
***************
*** 1,2 ****
--- 1,3 ----
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;
+ INSERT INTO ofirst_config SET modulename=`messenger`,showonmenu=`False`,active=`False`,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>`
\ No newline at end of file
|