Schema Migration
Catch breaking schema changes before production.
Analyze DDL and schema changes for data loss, compatibility, and downstream risk.
Review schema changes before they surprise production.The problem it solves
Schema changes can look harmless while still breaking consumers: dropped columns, type narrowing, nullability changes, renamed fields, missing defaults, or removed constraints.
What it does
When to use it
applying DDL migrations
merging schema YAML or dbt contract changes
warehouse migrations
reviewing pull requests that alter table shape
How it works
The skill compares the two schemas, runs migration analysis, and flags each risk with severity and why it matters.
Tools used
altimate_core_migration
Analyze migration risk through Altimate Core.
altimate_core_schema_diff
Compare schema versions through Altimate Core.
schema_diff
Compare schema changes and highlight compatibility or migration risks.