drizzle-migration
Installation
SKILL.md
Drizzle Migration
Safe database schema changes following Drizzle ORM best practices.
Golden Rules
- NEVER edit existing migration files
- ALWAYS update schema first, then generate
- ALWAYS review generated SQL before applying
- ALWAYS test in development before staging/production
Workflow
1. Plan the Change
- Identify tables and columns affected
- Consider data migration needs
- Plan for backwards compatibility
- Document rollback strategy