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, and explicit environment loading, and this Skill guides you through every required migration step. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths and new generated entrypoints (client, browser, models, enums). - Driver Adapter Setup: Install and configure the required adapter for PostgreSQL, MySQL, SQLite, SQL Server, Neon, PlanetScale, and other SQL providers, including pool and SSL settings. - Configuration and Cleanup: Create prisma.config.ts, load environment variables with dotenv, replace Prisma.validator with satisfies, and migrate middleware to Client Extensions. - Use Case: You upgrade a Node.js API to Prisma 7 and hit "Cannot find module" errors; follow the reference files to fix the generator output path, add the PrismaPg adapter, and regenerate the client. ## Quick Start Ask the assistant to upgrade your project from Prisma 6 to Prisma 7 and fix any resulting import or connection errors.