What prompts Prisma to ask a user to `Please enter...
# orm-help
c
What prompts Prisma to ask a user to
Please enter a name for the new migration:
when after all migrations have been run for an application and it starts to boot?
1
n
Hey Carlos 👋 When are you getting this prompt? Are you getting this prompt even if there are no changes in your schema file?
c
@Nurul this is after
npx prisma migrate dev
. But I've resolved this; turns out our database had extra tables that weren't in the Prisma schema. So we did
npx prisma db pull
to introspect and update the Prisma schema.
🙌 1