34968-vm/migrations/20251011_create_cart_table.sql
Flatlogic Bot adf8c9c972 V14
2025-10-16 06:28:46 +00:00

7 lines
189 B
SQL

CREATE TABLE IF NOT EXISTS cart (
id SERIAL PRIMARY KEY,
user_id INT,
menu_item_id INT NOT NULL,
quantity INT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);