-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdbt_project.yml
37 lines (37 loc) · 1.5 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
config-version: 2
name: 'intercom'
version: '0.9.1'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
intercom:
+schema: intercom
materialized: table
intermediate:
materialized: ephemeral
vars:
intercom:
admin: "{{ ref('stg_intercom__admin') }}"
company_history: "{{ ref('stg_intercom__company_history') }}"
company_tag_history: "{{ ref('stg_intercom__company_tag_history') }}"
contact_company_history: "{{ ref('stg_intercom__contact_company_history') }}"
contact_history: "{{ ref('stg_intercom__contact_history') }}"
contact_tag_history: "{{ ref('stg_intercom__contact_tag_history') }}"
conversation_contact_history: "{{ ref('stg_intercom__conversation_contact_history') }}"
conversation_history: "{{ ref('stg_intercom__conversation_history') }}"
conversation_part_history: "{{ ref('stg_intercom__conversation_part_history') }}"
conversation_tag_history: "{{ ref('stg_intercom__conversation_tag_history') }}"
tag: "{{ ref('stg_intercom__tag') }}"
team_admin: "{{ ref('stg_intercom__team_admin') }}"
team: "{{ ref('stg_intercom__team') }}"
intercom__using_contact_company: true
intercom__using_company_tags: true
intercom__using_contact_tags: true
intercom__using_conversation_tags: true
intercom__using_team: true
intercom__company_history_pass_through_columns: []
intercom__contact_history_pass_through_columns: []
intercom__conversation_history_pass_through_columns: []
clean-targets:
- target
- dbt_modules
- dbt_packages