From: <le...@us...> - 2002-08-10 11:57:22
|
Update of /cvsroot/meshdb/www/deal In directory usw-pr-cvs1:/tmp/cvs-serv2431 Modified Files: deal.sql Log Message: oops, forgot the product table Index: deal.sql =================================================================== RCS file: /cvsroot/meshdb/www/deal/deal.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- deal.sql 10 Aug 2002 10:09:47 -0000 1.1 +++ deal.sql 10 Aug 2002 11:57:18 -0000 1.2 @@ -58,3 +58,18 @@ PRIMARY KEY (id) ) TYPE=MyISAM; +# +# Table structure for table 'product' +# + +DROP TABLE IF EXISTS product; +CREATE TABLE product ( + id int(11) NOT NULL auto_increment, + class tinytext, + name mediumtext, + url mediumtext, + manuf tinytext, + description mediumtext, + PRIMARY KEY (id) +) TYPE=MyISAM; + |