WITH shift AS ( SELECT NOW() - TIMESTAMPTZ '2025-07-19 19:59:02.274+00' AS delta ) UPDATE tree_listing SET start_time = start_time + shift.delta FROM shift WHERE start_time is not null; WITH shift AS ( SELECT NOW() - TIMESTAMPTZ '2025-07-19 19:59:02.274+00' AS delta ) UPDATE latest_checkout SET start_time = start_time + shift.delta FROM shift WHERE start_time is not null; WITH shift AS ( SELECT NOW() - TIMESTAMPTZ '2025-07-19 19:59:02.274+00' AS delta ) UPDATE builds SET start_time = start_time + shift.delta FROM shift WHERE start_time is not null; WITH shift AS ( SELECT NOW() - TIMESTAMPTZ '2025-07-19 19:59:02.274+00' AS delta ) UPDATE checkouts SET start_time = start_time + shift.delta FROM shift WHERE start_time is not null; WITH shift AS ( SELECT NOW() - TIMESTAMPTZ '2025-07-19 19:59:02.274+00' AS delta ) UPDATE tests SET start_time = start_time + shift.delta FROM shift WHERE start_time is not null;