Skip to content

Commit

Permalink
final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerfranke committed Jan 30, 2024
1 parent f319c9f commit a7bd0d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/models/marts/metrics/fct_monthly_accounts_created.sql
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ final as (
count(distinct user_id) as num_accounts
from all_accounts ac
left join school_years sy
on ac.created_at::date between sy.started_at and sy.ended_at
on ac.created_at between sy.started_at and sy.ended_at
{{ dbt_utils.group_by(5) }}
order by
created_at_year asc,
Expand Down

0 comments on commit a7bd0d2

Please sign in to comment.