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 the entire migration. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths and updated import entrypoints. - Driver Adapter Setup: Install and configure adapters for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres, including pool and SSL settings. - Config and Environment Migration: Create prisma.config.ts, load .env files explicitly with dotenv, and replace removed features like $use middleware and Prisma.validator. - Use Case: A team upgrading a Next.js app to Prisma 7 follows the step-by-step references to update the schema, install @prisma/adapter-pg, rewrite client instantiation, and resolve ESM import errors. ## Quick Start Upgrade my project from Prisma 6 to Prisma 7 and fix all breaking changes including the generator, driver adapter, and prisma.config.ts setup.