Skip to content

Commit

Permalink
Chore: fix column name (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
ifoukarakis authored Sep 26, 2024
1 parent 94ad152 commit bf02f48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ select
-- Consider active servers with MAU > 0
, array_unique_agg(st.server_id) as active_servers
, array_size(active_servers) > 0 as has_user_activity
, min(datediff('day', st.last_activity_date, current_date)) as days_since_last_activity
, min(datediff('day', st.last_activity_date, current_date)) as days_since_last_user_activity
, max(st.last_monthly_active_users) as max_last_monthly_active_users
from
opportunities o
Expand Down

0 comments on commit bf02f48

Please sign in to comment.