Hey all, my startup is switching to use prisma for our ORM and loving it so far! Was curious to hear best practices for using Prisma Migrations on a Postgres DB (hosted in GCP) on a team of several engineers.
Do you spin up and seed a new PG DB for each engineer? Then migrate to a shared stage/dev db and finally to prod? Any additional tools used? Are all db changes done through prisma (never directly on the db)?
Great examples welcome!