Hello guy's and gal's
I am to the point in the project when I am ready to create the final tables for the database excluding more tables for a shopping cart, also I have not included all the fields into the forth table for images. I would appreciate any comment's on my design and structure, and the key's.
first table is for the website to work with.
Master_url
Id int not null primary key auto_increment,
url varchar (100),
title varchar (100),
description text,
keywords text,
body text
second table is for the major catagories
master_cat_url
id int not null primary key auto_increment,
master_id int not null,
url varchar (100),
title varchar (100),
description text,
keywords text,
body test
third table is for the subcatagories
master_cat_subcat_url
id int not null primary key auto_increment,
master_id int not null,
cat_id int not null,
url varchar (100),
title varchar (100),
description text,
keywords text,
body text
forth table is for the items for sale
master_cat_subcat_items_url
id int not null primary key auto_increment,
master_id int not null,
cat_id int not null,
subcat_id int not null,
url varchar (100),
title varchar (100),
description text,
keywords text
body text
Have I got it all wrong or does it look ok
Thanks in advance
Mike
Submit Your Article
Forum Rules

Reply With Quote