What problem does it solve?
Updates Prisma schema and migrations versioned from User Story/ERD; provides guidance to run migrate dev/deploy, generate, and seed. Reminds postinstall generate, tsconfig include prisma, and IDE monorepo to avoid PrismaClient errors.
Core Features & Use Cases
- Gap analysis: derive necessary changes from user stories or ERD to the Prisma data model.
- Migration creation: generate timestamped migration folders under prisma/migrations and maintain a clean history without overwriting existing migrations.
- Guidance: orchestrates or suggests commands for migrate dev/deploy, generate, and seed, ensuring postinstall and tsconfig/prisma config are aligned.
- Warning: flags potentially destructive changes (DROP/rename with data) and requires user confirmation before risky operations.
Quick Start
Automatically align your Prisma schema with your data model by generating a versioned migration.