What problem does it solve? Setting up Prisma ORM with different database providers involves provider-specific schema syntax, connection string formats, driver adapters, and version constraints that are easy to get wrong, especially with the differences between Prisma 6 and Prisma 7 workflows. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step setup references for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres. - Driver Adapter Configuration: Correct adapter and driver pairings for each database, including edge/serverless options like Turso and Prisma Postgres serverless. - Version Guardrails: Clear guidance that MongoDB projects must stay on Prisma 6.x with prisma-client-js, avoiding unsupported Prisma 7 SQL adapter migrations. - Use Case: You are switching a Node.js app from SQLite to PostgreSQL. Use this Skill to update the datasource provider, configure prisma.config.ts, install @prisma/adapter-pg, and instantiate Prisma Client correctly. ## Quick Start Ask the assistant to configure Prisma with PostgreSQL in your project, including the schema datasource, environment variable, and driver adapter setup.