Is it possible to use prisma migrate based on .env...
# prisma-migrate
m
Is it possible to use prisma migrate based on .env in root instead of prisma/.env? I can make it work with prisma client using dotenv-cli
j
Doesn't the same work for migrate?
m
Copy code
$ dotenv -e .env prisma migrate save --experimental
Error: Please provide the --experimental flag to use this command. Maybe it's possible to make it work, I'm not sure how to satisfy this error though 🙂
j
Interesting - that sounds like a bug to me. Can you open an issue about this in
prisma/migrate
?