Hey all, I'm trying to setup Prisma with an exist...
# orm-help
h
Hey all, I'm trying to setup Prisma with an existing mysql schema. It seems that the only way to control which schema Prisma will use in mysql db is by setting an endpoint with the format of
${service}/${stage}
(example:
foo@bar
). While my existing schema ( example:
foo
) has only one part of name. Is it possible use an existing mysql schema with the format of
foo
? without stage in the name... Thanks in advance!
h
You can specify the database name in the docker-compose.yml file under the database property in the section you have provided your database credentials.
h
Did exactly that : https://github.com/prisma/prisma/issues/4762 It doesn't work..