-- Get the complete table structure
-- In phpMyAdmin, run this and then CLICK on the "Create Table" cell to expand it
-- OR copy the entire CREATE TABLE statement

SHOW CREATE TABLE `bids`;

-- Look for these patterns in the output:
-- 1. FOREIGN KEY (`inquiryId`) REFERENCES `inquiries` (`id`)
-- 2. FOREIGN KEY (`supplierId`) REFERENCES `suppliers` (`id`)
-- 3. CONSTRAINT `something` FOREIGN KEY ...

-- The foreign key might be defined inline with the column, like:
-- `inquiryId` int NOT NULL,
-- KEY `bids_inquiry_id_supplier_id` (`inquiryId`,`supplierId`),
-- CONSTRAINT `something` FOREIGN KEY (`inquiryId`) REFERENCES `inquiries` (`id`)

-- We need to see the complete statement to identify how to drop it

