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.

Safe Migration Patterns

Installs
23
GitHub Stars
780
First Seen
Jan 25, 2026
database-migrations — dadbodgeoff/drift