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
Ryan
10/11/2021, 5:26 AM
@Sam 👋
I didn’t quite get what channel means here.
s
Sam
10/11/2021, 2:53 PM
Sorry, I mean a table not a channel....
r
Ryan
10/13/2021, 5:32 AM
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.