Users Table

This table stores information about the users who have accessed our website.

id (primary key) - int | name - varchar(255) View Table Schema

Products Table

This table stores information about the products we're trying to sell to the users.

id (primary key) - int | name - varchar(255) | price - decimal(10, 2) View Table Schema

Orders Table

This table stores information about the orders placed by the users.

id (primary key) - int | user_id - int | product_id - int | order_date - date View Table Schema

These database schemas are subject to change without notice.

Back to Database Schemas Users Table Products Table Orders Table