-- Get the complete CREATE TABLE statement
-- In phpMyAdmin, after running SHOW CREATE TABLE `bids`, 
-- click on the "bids" value in the "Create Table" column to see the full statement
-- OR copy the entire output including the CONSTRAINT lines at the end

-- The CREATE TABLE statement should end with something like:
-- CONSTRAINT `some_name` FOREIGN KEY (`inquiryId`) REFERENCES `inquiries` (`id`)
-- CONSTRAINT `some_name` FOREIGN KEY (`supplierId`) REFERENCES `suppliers` (`id`)
-- ENGINE=InnoDB DEFAULT CHARSET=utf8mb4

-- We need to see those CONSTRAINT lines to get the exact names

