-- Get the full CREATE TABLE statement
-- In phpMyAdmin, after running this:
SHOW CREATE TABLE `bids`;

-- Click on the "Create Table" cell to expand and see the full statement
-- OR copy the entire output and paste it here
-- We need to see the CONSTRAINT definitions at the end

-- Alternative: Try to extract just the constraint part:
SELECT 
    TABLE_NAME,
    CONSTRAINT_NAME,
    CONSTRAINT_TYPE
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
WHERE TABLE_SCHEMA = DATABASE()
  AND TABLE_NAME = 'bids'
  AND CONSTRAINT_TYPE IN ('FOREIGN KEY', 'UNIQUE');

-- This might show the constraint names

