Update of /cvsroot/openfirst/photogallery/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv1129
Modified Files:
setup.mysql
Log Message:
Removed TEXT size declaration to fix errors.
Index: setup.mysql
===================================================================
RCS file: /cvsroot/openfirst/photogallery/setup/setup.mysql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** setup.mysql 27 Jun 2003 01:48:55 -0000 1.5
--- setup.mysql 27 Jun 2003 02:20:29 -0000 1.6
***************
*** 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>';
--- 1,2 ----
! CREATE TABLE `ofirst_galleries` (`ID` TINYINT (3) UNSIGNED NOT NULL, `GalleryName` TEXT, `Author` TEXT, `Dates` TIME NOT NULL, `Description` TEXT, `NumPhotos` INT (3) UNSIGNED DEFAULT '0' NOT NULL, 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>';
|