Update of /cvsroot/openfirst/photogallery/setup
In directory sc8-pr-cvs1:/tmp/cvs-serv21108/setup
Added Files:
setup.mysql
Log Message:
initial upload
--- NEW FILE: setup.mysql ---
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;
|