With Prisma migrate. If I create a channel in my l...
# prisma-migrate
s
With Prisma migrate. If I create a channel in my local dev instance. Should I create it in the database, then run prisma db pull. Then create a migration. Or should I change my schema manually instead?
r
@Sam 👋 I didn’t quite get what channel means here.
s
Sorry, I mean a table not a channel....
r
If you create a table using Migrate, you can just run
prisma migrate dev
and that will create and apply the migration that includes that table in the database. No manual steps required.