is there always a default database? can prisma de...
# orm-help
m
is there always a default database? can prisma deal with multiple databases?
c
When you'll deploy your schema to prsima, database will be created with the name
<project>@<env>
For example, if you specify this endpoint in your
prisma.yml
: http://localhost:4466/awesome_project/dev
awesome_project@dev
db will be created
default@default
is used if you are using a root endpoint directly: http://localhost:4466/
s
not db but schema you will create