DROP TABLE IF EXISTS `order_products`;
CREATE TABLE `order_products` (
  `order_id` int NOT NULL,
  `product_id` int NOT NULL,
  `quantity` int NOT NULL,
  `amount` float NOT NULL
);
