If you're using Drizzle ORM with SQLite and need to evolve your schema without breaking things, this handles the full migration lifecycle. It covers table definitions, column types, indexes, and the critical difference between db:push (dev only) and proper migration generation for production. The docs include practical examples for common changes like adding tables, creating composite indexes, and handling SQLite's quirks around column renames. It's scoped specifically to Drizzle with SQLite, so if you're on Postgres with Supabase or using Prisma, you'll want different skills. Pairs well with database design patterns when you're figuring out what schema changes to make in the first place.
npx skills add https://github.com/erichowens/some_claude_skills --skill drizzle-migrations