DROP TABLE IF EXISTS `cart`;
CREATE TABLE `cart` (
    `user_id` int unsigned,
    `product_id` int unsigned,
    `quantity` int unsigned
);
