Skip to content

Commit

Permalink
Update dim__orgs.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
diveart authored Jul 26, 2024
1 parent 7695ca6 commit 550dd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/core_/dim__orgs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WITH orgs AS (
, user_count AS (
SELECT
org_id
, count(distinct user_id) + count(distinct user_id) % 2 AS num_users
, COUNT(DISTINCT user_id) + (COUNT(DISTINCT user_id) % 2) AS num_users
FROM {{ ref('user__created') }}
GROUP BY 1
)
Expand Down

0 comments on commit 550dd8c

Please sign in to comment.