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 imports. - Driver Adapter Setup: Install and configure adapters for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres. - Config and Environment Migration: Create prisma.config.ts and replace automatic .env loading with explicit dotenv setup. - Use Case: A team upgrading a Next.js app to Prisma 7 follows the step-by-step guide to update the schema, install @prisma/adapter-pg, rewrite client instantiation, and replace Prisma.validator with TypeScript satisfies. ## Quick Start Ask the assistant to upgrade your project from Prisma 6 to Prisma 7 and fix any resulting errors.