Concept Flow - Prisma migrations
Write schema.prisma
Run prisma migrate dev
Migration files created
Database schema updated
Application uses updated schema
Repeat for new changes
This flow shows how you write your Prisma schema, run migrations to update the database, and then use the updated schema in your NestJS app.