[Openfirst-cvscommit] photogallery/setup setup.mysql,1.1,1.2
Brought to you by:
xtimg
From: <xt...@us...> - 2003-06-21 15:54:57
|
Update of /cvsroot/openfirst/photogallery/setup In directory sc8-pr-cvs1:/tmp/cvs-serv25890 Modified Files: setup.mysql Log Message: Change MySQL script to conform with new standard. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/photogallery/setup/setup.mysql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** setup.mysql 8 Jun 2003 02:40:59 -0000 1.1 --- setup.mysql 21 Jun 2003 15:54:51 -0000 1.2 *************** *** 1,9 **** ! 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; \ No newline at end of file --- 1 ---- ! 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; |