npx skills add ...
npx skills add prisma/cursor-plugin --skill prisma-cli-migrate-resolve
npx skills add prisma/cursor-plugin --skill prisma-cli-migrate-resolve
prisma migrate resolve
Resolves issues with database migrations, such as failed migrations or baselining.
Updates the _prisma_migrations table to manually change the state of a migration. This is a recovery tool.
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 |
If you have existing tables and want to initialize migrations without running the SQL:
This tells Prisma "Assume this migration has already run".
If a migration failed (e.g., syntax error) and you fixed the SQL or want to retry:
This tells Prisma "Forget this migration run, let me try applying it again".
migrate deploy in production.