Skip to content

Database diagram

Matt Kleinsmith edited this page Dec 16, 2022 · 26 revisions

image

Constraints

users

Column Constraints
display_name NOT NULL
email NOT NULL, UNIQUE
password_hash NOT NULL

products

Column Constraints
seller_id NOT NULL, FOREIGN KEY
name NOT NULL
price NOT NULL

product_images

Column Constraints
product_id NOT NULL, FOREIGN KEY
url NOT NULL
preview NOT NULL

products_categories

Column Constraints
product_id NOT NULL, FOREIGN KEY
category_id NOT NULL, FOREIGN KEY

categories

Column Constraints
name NOT NULL

reviews

Column Constraints
buyer_id NOT NULL, FOREIGN KEY
seller_id (allow null during development), FOREIGN KEY
product_id NOT NULL, FOREIGN KEY
rating NOT NULL
review NOT NULL

review_images

Column Constraints
review_id NOT NULL, FOREIGN KEY
url NOT NULL

orders

Column Constraints
buyer_id NOT NULL, FOREIGN KEY

order_Details

Column Constraints
order_id NOT NULL
buyer_id NOT NULL, FOREIGN KEY
seller_id NOT NULL, FOREIGN KEY
product_id NOT NULL, FOREIGN KEY
price NOT NULL
quantity NOT NULL

All tables

Column Constraints
created_at NOT NULL
Clone this wiki locally