Skip to content

Commit

Permalink
Removed ad adapter for now since can't find utm parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
milo157 committed May 23, 2022
1 parent ae54d05 commit 00067d6
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 99 deletions.
30 changes: 0 additions & 30 deletions models/facebook_ads__ad_adapter.sql

This file was deleted.

13 changes: 0 additions & 13 deletions models/facebook_ads__ad_set_report.sql
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
/*
date_day,
account_id,
account_name,
campaign_id,
campaign_name,
adset_id,
adset_name,
clicks,
impressions,
spend
*/

with ads as (
select
ad_id,
Expand Down
11 changes: 0 additions & 11 deletions models/facebook_ads__campaign_report.sql
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
/*
date_day,
account_id,
account_name,
campaign_id,
campaign_name,
clicks,
impressions,
spend
*/

with campaigns as (
select
campaign_id,
Expand Down
45 changes: 0 additions & 45 deletions models/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,51 +12,6 @@ sources:
- name: campaigns

models:
- name: facebook_ads__ad_adapter
description: >
This model is used to show the utm parameters on a ad, adset and campaign level.
columns:
- name: date_day
description: The date of the ad, adset or campaign.
tests:
- not_null
- name: account_id
description: The unique id of the account.
tests:
- not_null
- name: account_name
description: The name of the account.
tests:
- not_null
- name: campaign_id
description: The unique id of the campaign.
tests:
- not_null
- name: campaign_name
description: The name of the campaign.
tests:
- not_null
- name: adset_id
description: The unique id of the adset.
- name: adset_name
description: The name of the adset.
tests:
- not_null
- name: ad_id
description: The unique id of the ad.
tests:
- not_null
- name: ad_name
description: The name of the ad.
tests:
- not_null
- name: impressions
description: The number of times the ad/adset/campaign was shown.
- name: clicks
description: The number of clicks the ad/adset/campaign received.
- name: spend
description: The amount of money spent on the ad/adset/campaign.

- name: facebook_ads__ad_set_report
description: >
This model shows the number of impressions, clicks and spend for each adset.
Expand Down

0 comments on commit 00067d6

Please sign in to comment.