You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, and thank you for the great work on Prisma ORM. After reading the docs, I noticed that this page does not have complete information. It does not explain how the database structure from your codebase will appear on Vercel.
It does not specify the need for a separate CI/CD flow for running migrations or using a vercel-build script in package.json with.
"vercel-build": "prisma generate && prisma migrate deploy && next build",
The text was updated successfully, but these errors were encountered:
I went ahead and expanded the docs according to my understanding of your request @lnikell in this PR: #6310
If I understood correctly, the main point you made was about a more advanced CI/CD scenario where not only Prisma Client needs to be generated but you also want to update the DB schema in the build pipeline, is that correct? Does the PR address your concern?
Hi, and thank you for the great work on Prisma ORM. After reading the docs, I noticed that this page does not have complete information. It does not explain how the database structure from your codebase will appear on Vercel.
It does not specify the need for a separate CI/CD flow for running migrations or using a vercel-build script in package.json with.
The text was updated successfully, but these errors were encountered: