prisma/cursor-plugin

prisma-cli-migrate-resolve

prisma migrate resolve

First seen Apr 3, 2026

Installation

$ npx skills add prisma/cursor-plugin --skill prisma-cli-migrate-resolve

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from prisma/cursor-plugin · top by installs.

npx skills add prisma/cursor-plugin

Browse all from prisma/cursor-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 9
License MIT
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version7.0.0
LicenseMIT
More metadata
author
prisma
version
7.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,808 B
  • docs SUMMARY.md 56 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 18 installs

SKILL.md

prisma migrate resolve

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

Command

prisma migrate resolve [options]

What It Does

Updates the prismamigrations 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:

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:

prisma migrate resolve --rolled-back 20240115120000_failed_migration

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

Use Cases

  1. Baselining: Adopting Prisma Migrate on an existing production database.
  2. Failed Migrations: Recovering from a failed migrate deploy in production.
  3. Hotfixes: reconciling manual database changes (rare).

References