Skip to content

Commit

Permalink
kristins feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-jamie committed Nov 2, 2020
1 parent e306f24 commit 3614ad5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'hubspot_source'
version: '2.0.0'
version: '0.2.0'
config-version: 2
require-dbt-version: [">=0.18.0", "<0.19.0"]

Expand Down
2 changes: 1 addition & 1 deletion models/stg_hubspot__company.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ with base as (

select
id as company_id,
{{ fivetran_utils.remove_prefix_from_columns(columns=columns, exclude=['id']) }}
{{ fivetran_utils.remove_prefix_from_columns(columns=columns, prefix='property_', exclude=['id']) }}
from base

)
Expand Down
2 changes: 1 addition & 1 deletion models/stg_hubspot__contact.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ with base as (

select
id as contact_id,
{{ fivetran_utils.remove_prefix_from_columns(columns=columns, exclude=['id']) }}
{{ fivetran_utils.remove_prefix_from_columns(columns=columns, prefix='property_', exclude=['id']) }}
from base

)
Expand Down
2 changes: 1 addition & 1 deletion models/stg_hubspot__deal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with base as (
), fields as (

select
{{ fivetran_utils.remove_prefix_from_columns(columns=columns) }}
{{ fivetran_utils.remove_prefix_from_columns(columns=columns, prefix='property_') }}
from base

)
Expand Down

0 comments on commit 3614ad5

Please sign in to comment.