database-migrations
Installation
SKILL.md
Database Migrations
Change your schema without breaking production.
When to Use This Skill
- Adding/removing columns
- Changing data types
- Creating indexes
- Data transformations
- Zero-downtime deployments
The Golden Rule
Every migration must be backward compatible with the previous version of your code.
Why? During deployment, both old and new code versions run simultaneously.