GitHub PR Interceptor Workstation

Continuous Operation · Real Webhooks Stream Automatically Below

PR #999 by @dev-analyticsfeature/dbt-schema

rename billing_amount to amount

Target Model: raw_patients

CI: PassedDataHub Check: Active
Git Patch Diffdbt/models/raw_patients.sql
- billing_amount: text
+ amount: numeric
DataHub Context Graph Pre-Commit Verdict:

⛔ MERGE BLOCKED BEFORE SHIP

BLOCK
Impact Summary:

Lineage unavailable — cannot assess downstream impact. Merge blocked until DataHub confirms no dependents.

Levee Generated Safe Migration SQL:
-- Levee Generated Safe dbt Model Migration for Column Rename
-- Exposes the new column name alongside the old one so downstream consumers
-- (dashboards, ML features) keep working until they migrate to amount.

SELECT
    *,
    billing_amount AS amount -- New name; old column 'billing_amount' stays available via *
FROM {{ ref('raw_patients') }}