Hello everyone, I'm wondering what is the differen...
# orm-help
t
Hello everyone, I'm wondering what is the difference between
Copy code
npx prisma migrate dev
and
Copy code
npx prisma migrate
a
Hey TK 👋 , welcome to the community!
prisma migrate
is not a CLI command by itself but it contains a number of subcommands that are all related to database migrations.
prisma migrate dev
is one of these sub-commands that will generate a migration based on your
schema.prisma
and apply it to your database. Let me know if I can clarify further!
✅ 1