dbt - Production Deployment
Given this
profiles.yml snippet, which schema will dbt use when running with --target staging?
my_project:
outputs:
staging:
type: redshift
host: redshift-cluster.example.com
user: analyst
password: secret
port: 5439
dbname: analytics_db
schema: staging_schema
target: staging
