-
Notifications
You must be signed in to change notification settings - Fork 29
/
dbt_project.yml
27 lines (26 loc) · 1.13 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
name: 'google_ads'
version: '0.11.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
google_ads:
+schema: google_ads
+materialized: table
vars:
google_ads:
ad_stats: "{{ ref('stg_google_ads__ad_stats') }}"
account_history: "{{ ref('stg_google_ads__account_history') }}"
campaign_history: "{{ ref('stg_google_ads__campaign_history') }}"
ad_group_history: "{{ ref('stg_google_ads__ad_group_history') }}"
ad_history: "{{ ref('stg_google_ads__ad_history') }}"
ad_group_criterion_history: "{{ ref('stg_google_ads__ad_group_criterion_history') }}"
ad_group_stats: "{{ ref('stg_google_ads__ad_group_stats') }}"
campaign_stats: "{{ ref('stg_google_ads__campaign_stats') }}"
keyword_stats: "{{ ref('stg_google_ads__keyword_stats') }}"
account_stats: "{{ ref('stg_google_ads__account_stats') }}"
google_auto_tagging_enabled: false
google_ads__ad_group_stats_passthrough_metrics: []
google_ads__ad_stats_passthrough_metrics: []
google_ads__campaign_stats_passthrough_metrics: []
google_ads__keyword_stats_passthrough_metrics: []
google_ads__account_stats_passthrough_metrics: []