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 so nothing is missed. ## Core Features & Use Cases - Step-by-step migration path: Covers package updates, ESM or CommonJS module format selection, TypeScript configuration, schema generator changes, and client instantiation updates. - Driver adapter setup: Provides installation and configuration for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres adapters, including pool and SSL settings. - Removed feature replacements: Shows how to replace $use middleware with Client Extensions, Prisma.validator with TypeScript satisfies, and handle removed CLI flags and metrics. - Use Case: A team upgrading a Node.js and PostgreSQL API to Prisma 7 follows the guide to switch to the prisma-client generator, install @prisma/adapter-pg, create prisma.config.ts, and fix all import errors after regenerating the client. ## Quick Start Upgrade my project from Prisma 6 to Prisma 7 and update the generator, driver adapter, and client imports accordingly.