원클릭으로
prisma-cli-migrate-resolve
prisma migrate resolve
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
prisma migrate resolve
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
prisma db execute. Reference when using this Prisma feature.
prisma db pull. Reference when using this Prisma feature.
prisma db push. Reference when using this Prisma feature.
prisma db seed. Reference when using this Prisma feature.
prisma debug. Reference when using this Prisma feature.
prisma dev. Reference when using this Prisma feature.
| name | prisma-cli-migrate-resolve |
| description | prisma migrate resolve |
| license | MIT |
| metadata | {"author":"prisma","version":"7.0.0"} |
Resolves issues with database migrations, such as failed migrations or baselining.
prisma migrate resolve [options]
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:
prisma migrate resolve --applied 20240101000000_initial_migration
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:
prisma migrate resolve --rolled-back 20240115120000_failed_migration
This tells Prisma "Forget this migration run, let me try applying it again".
migrate deploy in production.