I've got a MySQL database, with two tables that we're interested in:
products
product_id (PK), category_id (FK), title, description, image, price, quantity, start_date, lifetime, renewal_date
orders
order_id (PK), product_id (FK), user_id (FK), order_date, eta, payment_method, status
products...