Labsco
prisma logo

prisma-cli-migrate-resolve

✓ Official8

by prisma · part of prisma/cursor-plugin

prisma migrate resolve

🔥🔥🔥✓ VerifiedFreeQuick setup
🧩 One of 7 skills in the prisma/cursor-plugin package — works on its own, and pairs well with its siblings.

prisma migrate resolve

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by prisma

prisma migrate resolve npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-migrate-resolve Download ZIPGitHub8

prisma migrate resolve

Resolves issues with database migrations, such as failed migrations or baselining.

Command

Copy & paste — that's it
prisma migrate resolve [options]

What It Does

Updates the _prisma_migrations table to manually change the state of a migration. This is a recovery tool.

Options

You must provide exactly one of --applied or --rolled-back.

Option Description --applied <name> Mark a migration as applied (success) --rolled-back <name> Mark a migration as rolled back (ignored/failed) --schema Path to schema file --config Custom path to your Prisma config file

Examples

Mark as Applied (Baselining)

If you have existing tables and want to initialize migrations without running the SQL:

Copy & paste — that's it
prisma migrate resolve --applied 20240101000000_initial_migration

This tells Prisma "Assume this migration has already run".

Mark as Rolled Back (Fixing Failures)

If a migration failed (e.g., syntax error) and you fixed the SQL or want to retry:

Copy & paste — that's it
prisma migrate resolve --rolled-back 20240115120000_failed_migration

This tells Prisma "Forget this migration run, let me try applying it again".

Use Cases

  • Baselining: Adopting Prisma Migrate on an existing production database.

  • Failed Migrations: Recovering from a failed migrate deploy in production.

  • Hotfixes: reconciling manual database changes (rare).

References