Hi, I'm just starting with graphql and prisma and ...
# orm-help
r
Hi, I'm just starting with graphql and prisma and I'm having issues with a postgres DB in Heroku. The issue is that I can't create a new schema in the postgres instance and everything goes to
public
. This is how my docker-compose file looks like:
Copy code
version: '3'
services:
  prisma:
    image: prismagraphql/prisma:1.34
    restart: always
    ports:
    - "4466:4466"
    environment:
      PRISMA_CONFIG: |
        port: 4466
        # uncomment the next line and provide the env var PRISMA_MANAGEMENT_API_SECRET=my-secret to activate cluster security
        # managementApiSecret: my-secret
        databases:
          default:
            connector: postgres
            host: <http://ec2-3-222-30-53.compute-1.amazonaws.com|ec2-3-222-30-53.compute-1.amazonaws.com>
            database: ....
            schema: public
            user: ....
            password: .....
            ssl: true
            rawAccess: true
            port: '5432'
            migrations: true
r
Hey @Rodrigo 👋 Could you try editing the
schema
param in
prisma.yml
and see if that reflects to the new schema?