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?