Hi My docker-compose.yml configuration looks like ...
# orm-help
v
Hi My docker-compose.yml configuration looks like this by default. PRISMA_CONFIG: | port: 4466 databases: default: connector: postgres host: XXXXXXXXXXXX database: XXXXXXXXXX schema: public user: XXXXXXXXXXXXXXX password: XXXXXXXXXXXXX ssl: true rawAccess: true port: '5432' migrations: true Here by default the schema mentioned is public. For localhost:4466 - it puts everything in public. Now I have created a new endpoint like localhost:4466/xxx - Now when I try to create user it fails to create new schema in postgres. How to handle this?
r
Hi @Vignesh 👋 Could you change the
schema
parameter instead of the endpoint and check if that works?
v
Yup. That worked. I have to delete the whole heroku postgres instance and create new one. Something wrong. But worked. Thanks for your response.
💯 1