Hello,
When attempting to upload “create-databases” file, three database tables have the message “Fetching.”
Also receive the following message:
20:43:37 CREATE TABLE order_items
( order_id
int(11) NOT NULL AUTO_INCREMENT, product_id
int(11) NOT NULL, quantity
int(11) NOT NULL, unit_price
decimal(4,2) NOT NULL, PRIMARY KEY (order_id
,product_id
), KEY fk_order_items_products_idx
(product_id
), CONSTRAINT fk_order_items_orders
FOREIGN KEY (order_id
) REFERENCES orders
(order_id
) ON UPDATE CASCADE, CONSTRAINT fk_order_items_products
FOREIGN KEY (product_id
) REFERENCES products
(product_id
) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 0 row(s) affected, 3 warning(s): 1681 Integer display width is deprecated and will be removed in a future release. 1681 Integer display width is deprecated and will be removed in a future release. 1681 Integer display width is deprecated and will be removed in a future release. 0.031 sec