TK Aloufi
04/12/2022, 9:11 PMnpx prisma migrate dev
and
npx prisma migrate
Austin
04/12/2022, 9:21 PMprisma 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!