Update of /cvsroot/openfirst/photogallery
In directory sc8-pr-cvs1:/tmp/cvs-serv7557
Added Files:
openFIRST.photogallery.sql
Log Message:
Initial upload of sql setup
--- NEW FILE: openFIRST.photogallery.sql ---
# MySQL-Front Dump 2.0
#
# Host: localhost Database: openFIRST
#--------------------------------------------------------
# Server version 3.23.47-nt
#
# Table structure for table 'ofirst_galleries'
#
CREATE TABLE `ofirst_galleries` (
`ID` tinyint(3) unsigned NOT NULL auto_increment,
`GalleryName` tinytext,
`Author` text,
`Date` timestamp(6) NOT NULL,
`Description` text,
`NumPhotos` tinyint(6) unsigned default '0',
PRIMARY KEY (`ID`)
) TYPE=MyISAM;
#
# Dumping data for table 'ofirst_galleries'
#
INSERT INTO `ofirst_galleries` VALUES("1","Testing","David Di Biase","000000","Doesnt doesnt doesnt doesnt","6");
INSERT INTO `ofirst_galleries` VALUES("2","Testing","David Di Biase","000000","Doesnt doesnt doesnt doesnt","6");
INSERT INTO `ofirst_galleries` VALUES("3","Testing","David Di Biase","000000","Doesnt doesnt doesnt doesnt","6");
|