
Prisma Cli Migrate Status
- 13 installs
- 8 repo stars
- Updated February 9, 2026
- prisma/cursor-plugin
prisma-cli-migrate-status checks pending and failed Prisma migrations.
About
The prisma-cli-migrate-status skill documents prisma migrate status connecting to the database, reading _prisma_migrations, and comparing against local prisma/migrations files. Reports whether schema is up to date, lists unapplied migrations with counts, flags DB-only migrations missing locally, and surfaces failed apply attempts. Output suggests migrate dev for development or migrate deploy for production follow-ups. Use in CI before deploy, when debugging drift complaints from migrate dev, or verifying prod state after a failed release. Exit code 1 indicates command errors while success may still list pending files. Compares local migration files to database history. Reports pending, missing, and failed migrations. Suggests migrate dev or migrate deploy next steps. Useful CI preflight before production deploy. Explains drift debugging scenarios. Status report with pending or failed migration list. User checks migration status before deploy or after failures.
- Compares local migration files to database history.
- Reports pending, missing, and failed migrations.
- Suggests migrate dev or migrate deploy next steps.
- Useful CI preflight before production deploy.
- Explains drift debugging scenarios.
Prisma Cli Migrate Status by the numbers
- 13 all-time installs (skills.sh)
- Ranked #627 of 911 Databases skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
prisma-cli-migrate-status capabilities & compatibility
- Capabilities
- what it does report types · when to use debugging and ci
- Use cases
- database · ci cd
What prisma-cli-migrate-status says it does
Checks the status of your database migrations
Failed migrations
npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-migrate-statusAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 13 |
|---|---|
| repo stars | ★ 8 |
| Last updated | February 9, 2026 |
| Repository | prisma/cursor-plugin ↗ |
How do I see which Prisma migrations are pending?
Check applied versus local Prisma migrations including pending, missing, and failed states.
Who is it for?
DevOps verifying DB migration state in CI or prod.
Skip if: Skip when no migrations exist in the project.
When should I use this skill?
User checks migration status before deploy or after failures.
What you get
Status report with pending or failed migration list.
Files
prisma migrate status
Checks the status of your database migrations.
Command
prisma migrate status [options]What It Does
- Connects to the database
- Checks the
_prisma_migrationstable - Compares applied migrations with local migration files
- Reports:
- Status: Database is up-to-date or behind
- Unapplied migrations: Count of pending migrations
- Missing migrations: Migrations present in DB but missing locally
- Failed migrations: Any migrations that failed to apply
Options
| Option | Description |
|---|---|
--schema | Path to schema file |
--config | Custom path to your Prisma config file |
Examples
Check status
prisma migrate statusOutput example (Up to date):
Database schema is up to date!Output example (Pending):
Following migration have not yet been applied:
20240115120000_add_user
To apply migrations in development, run:
prisma migrate dev
To apply migrations in production, run:
prisma migrate deployWhen to Use
- Debugging: Why is
migrate devcomplaining about drift? - CI/CD: Verify database state before deploying
- Production: Check if migrations are needed (
migrate deploy) or if a deployment failed
Exit Codes
0: Success (may have pending migrations, but command ran successfully)1: Error
To check for pending migrations programmatically, you might need to parse the output or use migrate diff with exit code flags.
{
"name": "prisma-cli-migrate-status",
"version": "7.0.0",
"author": "prisma",
"license": "MIT"
}Related skills
FAQ
What does prisma-cli-migrate-status do?
prisma-cli-migrate-status checks pending and failed Prisma migrations.
When should I use prisma-cli-migrate-status?
User checks migration status before deploy or after failures.
Is this skill safe to install?
Review the Security Audits panel on this page before installing in production.