Model Materializations
Overview
Setting Up Materializations
# The following dbt_project.yml configures a project that looks like this:
# .
# └── models
# ├── finance
# │ ├── revenue.sql
# │ └── invoices.sql
# └── operations
# ├── stg_shipping.sql
# └── stg_deliveries.sql
name: my_project
version: 1.0.0
config-version: 2
models:
my_project:
finance:
# materialize all models in models/finance as tables
+materialized: table
operations:
# this is redundant, and does not need to be set
+materialized: viewIn-File Materialization Configuration
Last updated
Was this helpful?