-- Removes the two seed rows inserted by the original version of 0004
-- (one 'regular' invoice, one standalone 'qpi' invoice) before the QPI
-- model changed. Targeted by primary key only, so it can't touch
-- anything else. Run this before re-running the corrected 0004 inserts.
delete from invoices
where id in (
  'inv_agent_042_2026-06_c1',
  'qpi_agent_042_2026-Q2'
);
