What problem does it solve? Upgrading from Prisma ORM v6 to v7 introduces breaking changes around the new prisma-client generator, mandatory driver adapters, prisma.config.ts, explicit environment loading, and new generated client entrypoints, and this Skill guides you through each migration step without missing critical changes. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths, module format options, and new client/browser/models/enums entrypoints. - Driver Adapter Setup: Install and configure required adapters for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres, including pool and SSL settings. - Configuration Modernization: Create prisma.config.ts, load environment variables explicitly with dotenv, and replace removed features like middleware, metrics, and Prisma.validator. - Use Case: You upgrade a Node.js API to Prisma 7 and hit "Cannot find module" errors; follow the reference guides to fix the generator output path, add the PrismaPg adapter, and regenerate the client. ## Quick Start Ask the assistant to upgrade your project to Prisma 7 and walk through the schema, driver adapter, and prisma.config.ts changes step by step.