Last active
October 2, 2018 00:18
Revisions
-
mattm revised this gist
Oct 2, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,10 @@ explore: fb_ad_insights { label: "Facebook" view_label: "Facebook" join: fb_conversions { view_label: "Facebook" type: left_outer relationship: one_to_one sql_on: ${fb_ad_insights.primary_key} = ${fb_conversions.primary_key} ;; } } -
mattm created this gist
Oct 1, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ explore: fb_ad_insights { label: "Facebook" view_label: "Facebook" join: fb_ad_insights_action_values { view_label: "Facebook" type: left_outer relationship: one_to_one sql_on: ${fb_ad_insights.primary_key} = ${fb_ad_insights_action_values.primary_key} and ${fb_ad_insights_action_values.action_type} = "offsite_conversion.fb_pixel_purchase" ;; } }