question about the `PRISMA_ENDPOINT` url. Can some...
# orm-help
r
question about the
PRISMA_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?
n
would that essentially create my tables in the
default
schema in my db?
The databases/schemas that Prisma creates are named after a combination of service name and stage, so for each new combination that gets deployed with
prisma deploy
, there will be a database storing the data of that new service.
r
gracias!