What problem does it solve?
This Skill prevents risky database changes from reaching production by reviewing schema diffs, identifying breaking changes, and generating migrations with rollback paths.
Core Features & Use Cases
- Migration Generation: Creates up and down migration scripts for common ORM and raw SQL workflows.
- Breaking Change Detection: Flags destructive schema edits such as dropped columns, renamed tables, and unsafe not null additions.
- Index and Query Safety: Recommends missing indexes and scans SQL for parameterization issues before deployment.
- Use Case: When a table schema changes, it can produce the migration plan, warn about user-impacting changes, and document the rollout and rollback steps.
Quick Start
Ask the db skill to review your schema changes, generate a safe migration plan, and report any breaking changes or missing indexes.