What problem does it solve? Setting up Prisma with the correct database provider, connection string format, driver adapter, and client generation steps is error-prone, especially with the differences between Prisma 6 and Prisma 7 workflows. This Skill provides verified, provider-specific configuration guides so you avoid misconfigured schemas, wrong adapters, and connection failures. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step setup for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema blocks, prisma.config.ts, and environment variables. - Driver Adapter Selection: Maps each database to the correct @prisma/adapter-* package and underlying JS driver, with instantiation examples. - Version Boundary Guidance: Clarifies that MongoDB projects should stay on Prisma 6.x with prisma-client-js and must not follow the Prisma 7 SQL adapter workflow. - Use Case: You are migrating an app from SQLite to PostgreSQL. Use this Skill to update the datasource provider, install @prisma/adapter-pg, set the DATABASE_URL format, and regenerate Prisma Client correctly. ## Quick Start Ask the AI to configure Prisma 7 with PostgreSQL using the pg driver adapter and generate the client.