Mathieu
06/02/2020, 9:01 AMnpx prisma migrate up --experimental
on the release phase of the Procfile but npx spits out a migrate up is not a prisma command.
. Whats the correct workflow? are you supposed to migrate the db manually before deploying to heroku? or am i doing something wrong in my Procfile/heroku deployment process.Ahmed
06/02/2020, 9:04 AMAhmed
06/02/2020, 9:05 AMUgogo
06/02/2020, 9:09 AM// Procfile
release: npm run prisma:migrate-up
web: npm run start
And here is the NPM script
// package.json
"prisma:migrate-up": "prisma migrate up --experimental",
Mathieu
06/02/2020, 9:12 AMrelease: npx prisma migrate up --experimental; npx prisma generate;
in the Procfile doesnt work.Ugogo
06/02/2020, 9:13 AMMathieu
06/02/2020, 9:14 AMMathieu
06/02/2020, 9:59 AM