Skip to content

Commit

Permalink
Merge pull request #5 from fivetran/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
fivetran-jamie authored Oct 29, 2020
2 parents 71ed544 + edcde6e commit e22f61e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
config-version: 2

name: 'asana_source'
version: '0.0.1'
version: '0.2.0'

require-dbt-version: '>=0.17.0'
require-dbt-version: [">=0.18.0", "<0.19.0"]

models:
asana_source:
Expand Down
2 changes: 1 addition & 1 deletion models/stg_asana_team.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ with team as (
name as team_name

from team
where not _fivetran_deleted
where not coalesce(_fivetran_deleted, false)
)

select *
Expand Down
2 changes: 1 addition & 1 deletion models/stg_asana_user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ with asana_user as (
email,
name as user_name
from asana_user
where not _fivetran_deleted
where not coalesce(_fivetran_deleted, false)
)

select *
Expand Down
2 changes: 1 addition & 1 deletion packages.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- package: fishtown-analytics/dbt_utils
version: 0.4.0
version: [">=0.6.0", "<0.7.0"]

0 comments on commit e22f61e

Please sign in to comment.