-- Add typed expenses: diesel, toll, maintenance, other.
ALTER TABLE trip_expenses
  ADD COLUMN type ENUM('diesel', 'toll', 'maintenance', 'other') NOT NULL DEFAULT 'other' AFTER driver_id;

