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 full migration. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths and new client, browser, models, and 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. - Config and Environment Migration: Create prisma.config.ts, load .env files explicitly with dotenv, and replace removed features like $use middleware and Prisma.validator with Client Extensions and satisfies. - Use Case: A Node.js API using Prisma v6 with PostgreSQL fails after upgrading packages; follow the step-by-step guide to update the generator block, add @prisma/adapter-pg, create prisma.config.ts, and fix all import errors. ## Quick Start Ask the assistant to upgrade my Prisma project from v6 to v7 and fix the resulting generator, adapter, and import errors.