-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdbt_project.yml
33 lines (30 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
config-version: 2
name: 'iterable_source'
version: '0.10.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
iterable_source:
+materialized: table
+schema: stg_iterable
tmp:
+materialized: view
vars:
iterable_source:
campaign_history: "{{ source('iterable', 'campaign_history') }}"
campaign_label_history: "{{ source('iterable', 'campaign_label_history') }}"
campaign_list_history: "{{ source('iterable', 'campaign_list_history') }}"
campaign_suppression_list_history: "{{ source('iterable', 'campaign_suppression_list_history') }}"
channel: "{{ source('iterable', 'channel') }}"
event: "{{ source('iterable', 'event') }}"
event_extension: "{{ source('iterable', 'event_extension') }}"
list: "{{ source('iterable', 'list') }}"
message_type: "{{ source('iterable', 'message_type') }}"
template_history: "{{ source('iterable', 'template_history') }}"
user_history: "{{ source('iterable', 'user_history') }}"
user_device: "{{ source('iterable', 'user_device') }}"
user_unsubscribed_channel: "{{ source('iterable', 'user_unsubscribed_channel') }}"
user_unsubscribed_message_type: "{{ source('iterable', 'user_unsubscribed_message_type') }}"
user_unsubscribed_channel_history: "{{ source('iterable', 'user_unsubscribed_channel_history') }}"
user_unsubscribed_message_type_history: "{{ source('iterable', 'user_unsubscribed_message_type_history') }}"
iterable_event_extension_pass_through_columns: []
iterable_user_history_pass_through_columns: []