Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-jamie committed Sep 29, 2021
1 parent b563904 commit 33ab7b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion models/stg_google_ads.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with base as (
'Google Ads' as platform,
cast(date_day as date) as date_day,
account_name,
external_customer_id as account_id,
cast(external_customer_id as {{ dbt_utils.type_string() }}) as account_id,
campaign_name,
cast(campaign_id as {{ dbt_utils.type_string() }}) as campaign_id,
ad_group_name,
Expand Down
2 changes: 1 addition & 1 deletion models/stg_linkedin_ads.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with base as (
'LinkedIn Ads' as platform,
cast(date_day as date) as date_day,
account_name,
account_id,
cast(account_id as {{ dbt_utils.type_string() }}) as account_id,
campaign_group_name as campaign_name,
cast(campaign_group_id as {{ dbt_utils.type_string() }}) as campaign_id,
campaign_name as ad_group_name,
Expand Down
2 changes: 1 addition & 1 deletion models/stg_microsoft_ads.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with base as (
'Microsoft Ads' as platform,
cast(date_day as date) as date_day,
account_name,
account_id,
cast(account_id as {{ dbt_utils.type_string() }}) as account_id,
campaign_name,
cast(campaign_id as {{ dbt_utils.type_string() }}) as campaign_id,
ad_group_name,
Expand Down

0 comments on commit 33ab7b2

Please sign in to comment.