-- Add condition column only (warrantyAvailable and warrantyPeriod already exist)
-- Run this:

ALTER TABLE `bids` ADD COLUMN `condition` ENUM('brand_new', 'used') NULL AFTER `warrantyPeriod`;

-- If you get "Duplicate column name" error, the condition column also exists!
-- In that case, all columns are already added and you're good to go.

