Login   Register  
PHP Classes
elePHPant
Icontem

File: mysql.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Thomas Uttenthaler  >  phpRealGallery  >  mysql.sql  >  Download  
File: mysql.sql
Role: ???
Content type: text/plain
Description: Dump file for MySQL
Class: phpRealGallery
Author: By
Last change:
Date: 2001-07-27 08:26
Size: 422 bytes
 

Contents

Class file image Download
CREATE TABLE galleries (
   gid int(4) unsigned NOT NULL auto_increment,
   title varchar(255),
   text blob,
   PRIMARY KEY (gid)
); 


CREATE TABLE images (
   iid int(4) unsigned NOT NULL,
   gid int(4) unsigned NOT NULL,
   file varchar(255) NOT NULL,
   title varchar(255),
   text blob,
   date varchar(64),
   tech varchar(255),
   size varchar(64),
   price varchar(255),
   PRIMARY KEY (iid)
);