Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-kristin committed Jul 9, 2020
1 parent 9313fe2 commit 9c0b1f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 0 additions & 4 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,3 @@ vars:
task: "{{ ref('stg_asana_task') }}"
team: "{{ ref('stg_asana_team') }}"
user: "{{ ref('stg_asana_user') }}"

# TODO: delete profile after testing
# profile: integration_test
profile: dev_bigquery_dbt_testing
2 changes: 1 addition & 1 deletion models/asana_user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ count_user_projects as (
user_id,
sum(case when role = 'owner' then 1
else 0 end) as number_of_projects_owned,
sum(case when currently_working_on is true then 1
sum(case when currently_working_on = true then 1
else 0 end) as number_of_projects_currently_assigned_to

from project_user
Expand Down
6 changes: 4 additions & 2 deletions packages.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
packages:
- package: fishtown-analytics/dbt_utils
version: 0.3.0
version: 0.4.0

- local: ~/Documents/github/dbt_asana_source
- package: fivetran/asana_source
version: 0.1.0

0 comments on commit 9c0b1f6

Please sign in to comment.