More thingies
This commit is contained in:
parent
3e8423dbd8
commit
f85adbde93
3 changed files with 14 additions and 0 deletions
|
|
@ -30,5 +30,7 @@ clean-targets: # directories to be removed by `dbt clean`
|
|||
models:
|
||||
dbtlearn:
|
||||
+materialized: view # Default way to materialize is view
|
||||
src:
|
||||
+materialized: ephemeral
|
||||
dim:
|
||||
+materialized: table
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
{{
|
||||
config(
|
||||
materialized = 'view'
|
||||
)
|
||||
}}
|
||||
|
||||
WITH src_hosts AS(
|
||||
SELECT *
|
||||
FROM {{ ref('src_hosts') }}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
{{
|
||||
config(
|
||||
materialized = 'view'
|
||||
)
|
||||
}}
|
||||
|
||||
WITH src_listings AS (
|
||||
SELECT *
|
||||
FROM
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue