NestJS - Database with Prisma
Given the following Prisma schema change and migration command, what will happen?
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
}
// Command run:
npx prisma migrate dev --name addNameField