You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UserID (Primary Key)
Username
Password (hashed and salted)
Email
First Name
Last Name
Address
Phone Number
Other relevant user information
Products Table:
ProductID (Primary Key)
Product Name
Description
Price
Stock Quantity
Category (or CategoryID as a foreign key to a Category table)
Image URL
Other product details
Categories Table:
CategoryID (Primary Key)
Category Name
Description
Orders Table:
OrderID (Primary Key)
UserID (Foreign Key to Users Table)
Order Date
Total Amount
Order Status (e.g., processing, shipped, delivered)
OrderItems Table:
OrderItemID (Primary Key)
OrderID (Foreign Key to Orders Table)
ProductID (Foreign Key to Products Table)
Quantity
Subtotal (Price x Quantity)
Reviews Table:
ReviewID (Primary Key)
ProductID (Foreign Key to Products Table)
UserID (Foreign Key to Users Table)
Rating
Review Text
Review Date
ShoppingCart Table (for tracking items in a user's cart before checkout):
CartID (Primary Key)
UserID (Foreign Key to Users Table)
ProductID (Foreign Key to Products Table)
Quantity
Description
The is part of the project structure and we need to define the:
Acceptable criteria
We need to have a mermaid diagram representation for the feature work.
Related strory
This is a research and documentation story.
The text was updated successfully, but these errors were encountered: