Ramin B
11/20/2018, 5:14 PMPRISMA_ENDPOINT
url. Can someone explain what the different parts of the URL mean and how they map to the prisma server and databse? for example, this URL:
<https://my-prisma-server.herokuapp.com/prisma-heroku-dev/dev>
when I do a prisma deploy
, what information is looking for? how does default
play into all of this? if I deployed to <https://my-prisma-server.herokuapp.com/default/default>
instead, would that essentially create my tables in the default
schema in my db?nikolasburk
nikolasburk
nikolasburk
would that essentially create my tables in theThe databases/schemas that Prisma creates are named after a combination of service name and stage, so for each new combination that gets deployed withschema in my db?default
prisma deploy
, there will be a database storing the data of that new service.Ramin B
11/20/2018, 5:57 PM