[Openfirst-cvscommit] photogallery/setup setup.mysql,1.3,1.4
Brought to you by:
xtimg
From: <dav...@us...> - 2003-06-27 01:33:24
|
Update of /cvsroot/openfirst/photogallery/setup In directory sc8-pr-cvs1:/tmp/cvs-serv28271 Modified Files: setup.mysql Log Message: Fixed errors in script. Changed syntax a bit. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/photogallery/setup/setup.mysql,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** setup.mysql 26 Jun 2003 15:24:24 -0000 1.3 --- setup.mysql 27 Jun 2003 01:33:21 -0000 1.4 *************** *** 1,2 **** ! CREATE TABLE `ofirst_galleries` (`ID` tinyint(3) unsigned NOT NULL auto_increment, `GalleryName` tinytext, `Author` text, `Date` time(10) NOT NULL, `Description` text, `NumPhotos` tinyint(6) unsigned default '0', PRIMARY KEY (`ID`)) TYPE=MyISAM; ! INSERT INTO ofirst_config SET modulename=`photogallery`,showonmenu=`False`,active=`False`,adminnavigation=`<a href=$basepath/awards/admin/>Gallery Manager</a>`,modulenavigation=`<a href=$basepath/awards/>View Gallery</a>` \ No newline at end of file --- 1,2 ---- ! CREATE TABLE 'ofirst_galleries' ('ID' tinyint(3) unsigned NOT NULL auto_increment, 'GalleryName' tinytext, 'Author' text, 'Date' time(10) NOT NULL, 'Description' text, 'NumPhotos' tinyint(6) unsigned default '0', PRIMARY KEY ('ID')) TYPE=MyISAM; ! INSERT INTO ofirst_config SET modulename='photogallery',showonmenu='0',active='0',adminnavigation='<a href="$basepath/awards/admin/">Gallery Manager</a>',modulenavigation='<a href="$basepath/awards/">View Gallery</a>'; \ No newline at end of file |