From harness-claude
Manages database schema evolution with prisma migrate dev/deploy/reset, including baselining, drift detection, and migration history resolution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/harness-claude:prisma-migrationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Manage database schema evolution with prisma migrate dev/deploy/reset and migration history
Manage database schema evolution with prisma migrate dev/deploy/reset and migration history
schema.prisma, run:npx prisma migrate dev --name describe_the_change
This generates a migration SQL file, applies it, and regenerates Prisma Client.
migrate dev in production. Use:npx prisma migrate deploy
This applies all pending migrations without generating new ones.
npx prisma migrate reset
mkdir -p prisma/migrations/0_init
npx prisma migrate diff --from-empty --to-schema-datamodel prisma/schema.prisma --script > prisma/migrations/0_init/migration.sql
npx prisma migrate resolve --applied 0_init
npx prisma migrate diff --from-schema-datamodel prisma/schema.prisma --to-schema-datasource prisma/schema.prisma
Customize generated SQL — after migrate dev creates a migration file, edit it before committing. Prisma will not overwrite your edits on subsequent runs.
Handle failed migrations — if a migration partially applied:
# Fix the database state manually, then mark as applied:
npx prisma migrate resolve --applied MIGRATION_NAME
# Or mark as rolled back:
npx prisma migrate resolve --rolled-back MIGRATION_NAME
migrate dev requires a shadow database to detect drift. Configure it explicitly if your provider does not allow automatic creation:datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
shadowDatabaseUrl = env("SHADOW_DATABASE_URL")
}
Always commit migration files (prisma/migrations/) to version control. They are the source of truth for production.
Never delete or reorder migration directories once they have been applied to any environment.
Prisma Migrate uses a migrations table (_prisma_migrations) to track which migrations have been applied. Each migration is a directory containing a migration.sql file and is applied in lexicographic order.
Migration history vs schema state: The migration history is the authoritative record. The schema file describes the desired end state. If these diverge (drift), migrate dev will detect it via the shadow database.
Shadow database mechanics: During migrate dev, Prisma creates a temporary shadow database, applies all existing migrations to it, computes the diff against your schema, and generates the new migration. The shadow database is dropped afterward. This means you need CREATE DATABASE privileges in development.
Data migrations: Prisma generates only DDL (schema changes). If you need DML (data changes — backfills, column value transforms), add raw SQL to the generated migration file before committing.
Trade-offs:
migrate dev is safe and reversible (via reset), but slow on large schemas due to shadow database overheadmigrate deploy is fast but irreversible — there is no built-in rollback. Write reverse migrations manually if neededdb push skips migration history entirely — use it only for rapid prototyping, never in a shared environmentCommon mistakes:
migrate dev in CI — it generates files and requires a shadow database. Use migrate deploy insteadhttps://prisma.io/docs/orm/prisma-migrate
npx claudepluginhub intense-visions/harness-engineering --plugin harness-claudeProvides best practices for safe database migrations: schema changes, data backfills, rollbacks, zero-downtime deploys for PostgreSQL, MySQL, Prisma, Drizzle, Django.
Provides database migration best practices for schema changes, data migrations, rollbacks, and zero-downtime deployments across PostgreSQL, MySQL, and ORMs like Prisma, Drizzle, and Django.
Creates, validates, executes, and rolls back schema migrations for PostgreSQL, MySQL, MongoDB using Flyway, Alembic, Prisma, Knex.