-- ============================================================
-- HeavyHaul Agent — Overall Dimensions (truck + trailer combo).
-- Per the client meeting: load (commodity) dimensions and OVERALL
-- dimensions are different things and both must be shown/edited.
-- Permits are cross-checked against the OVERALL dimensions.
-- ============================================================

alter table public.trips
  add column overall_length_in integer,
  add column overall_width_in integer,
  add column overall_height_in integer,
  add column overall_weight_lbs integer;
