What problem does it solve? Database changes are risky operational events: destructive migrations, missing indexes, and poorly sequenced deploys can cause outages or data loss. This Skill provides structured guidance so schema and data changes are planned, reviewed, and rolled out safely. ## Core Features & Use Cases - Migration Planning: Promotes additive, phased migrations and flags expensive or destructive changes before they ship. - Query and Index Review: Watches query shape, index tradeoffs, and lock behavior during schema design. - Safe Rollout Sequencing: Coordinates application deploys with data changes, and designs backfills that are resumable and idempotent. - Use Case: When adding a new column that requires backfilling millions of rows, use this Skill to plan a phased migration with a rollback path instead of a single risky deploy. ## Quick Start Ask the assistant to review your planned database migration and rollout plan using the database-stack guidance before deploying it.