...
Prisma keeps giving me strange bugs/I don't understand it, how do I learn more?
Probably Whenever a new migration is added to the develop branch on GitHub and you pull it, your computer hasn’t run the migration yet so you’re out of sync with what the code is doing and what your database can do. To fix this, run
yarn prisma:reset
to reset your database and run all the migrations. To learn more about the Prisma commands, see the below linkCheck out the Software Prisma FAQ
There is a lot of useful information in the prisma docs! Specifically, the environment files docs and the database URL formatting docs.
...