Does anyone know how to basically factory reset ev...
# orm-help
d
Does anyone know how to basically factory reset everything as if it's the first time prisma is setting up? I'm having some troubles with migrations and would just like to start over since I'm only prototyping.
a
Hi Douglas! This command should reset your Prisma environment. Just make sure to copy over any other environment variables than the DATABASE_URL if you have any!
Copy code
rm -rf prisma .env && npx prisma init
Let me know if it works for you!
r
We have a reset command;
Copy code
prisma migrate reset
🙌 1