[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live)

[Discussions](/c/community/4)

# Conflict Between Prisma and Drizzle ORM in the Project

127 views · 3 likes · 2 posts


Techimo (@ranjeet-techimoin) · 2025-02-16 · ♥ 2

There was a conflict between Prisma and Drizzle ORM due to their different migration and schema management systems. This caused issues during database setup, migrations, and deployment on Vercel.

Solution:

Removed Prisma completely to avoid conflicts.

Used Drizzle ORM as the primary database tool.

Updated package.json and ensured drizzle-kit commands work correctly.

This issue is now resolved, but adding it here for reference to help others who might face the same problem.


Anshuman Bhardwaj (@anshumanb) · 2025-02-17 · ♥ 1

Hi @ranjeet-techimoin, welcome to the Vercel Community!

Thanks for sharing your solution with the community!