prisma migrate status
npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-migrate-status
Checks the status of your database migrations.
prisma migrate status [options]
_prisma_migrations table| Option | Description |
|--------|-------------|
| --schema | Path to schema file |
| --config | Custom path to your Prisma config file |
prisma migrate status
Output 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 deploy
migrate dev complaining about drift?migrate deploy) or if a deployment failed0: Success (may have pending migrations, but command ran successfully)1: ErrorTo check for pending migrations programmatically, you might need to parse the output or use migrate diff with exit code flags.
Take prisma/prisma-cli-migrate-status from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.