Skip to content

Instantly share code, notes, and snippets.

View harish-caring's full-sized avatar

harish-caring

View GitHub Profile
@harish-caring
harish-caring / ihc-status-migration.md
Created September 24, 2025 09:01
# Backfill ihcProvidersLeadStatus for Bidder leads (MM)

Backfill ihcProvidersLeadStatus for Bidder leads (MM)

Follow these steps on the MM Postgres database in DBeaver. Run each step in order, in the same editor session.

0) Pre-step (already done)

  • Exported CSV/TSV from DIR (MySQL) using this query to get latest Bidder lead statuses with rn:
SELECT ls.*, ROW_NUMBER() OVER (
  PARTITION BY ls.local_resource_lead_id
  ORDER BY ls.created_at DESC, ls.id DESC
) rn