prisma-cli-migrate-reset
Installation
SKILL.md
prisma migrate reset
Resets your database and re-applies all migrations.
Command
prisma migrate reset [options]
What It Does
- Drops the database (if possible) or deletes all data/tables
- Re-creates the database
- Applies all migrations from
prisma/migrations/ - Runs the seed script (if configured)
Warning: All data will be lost.