diff --git a/scripts/mau.sql b/scripts/mau.sql index a8ff897b..f16a8c3e 100644 --- a/scripts/mau.sql +++ b/scripts/mau.sql @@ -1,19 +1,19 @@ select - count(distinct user_id) as mau_posts, + count(distinct user_id) as active_posts, date_trunc('month', updated_at) as month from posts group by month order by month DESC; select - count(distinct user_id) as mau_pgs, + count(distinct user_id) as active_sites, date_trunc('month', updated_at) as month from projects group by month order by month DESC; select - count(id) as users, + count(id) as new_users, date_trunc('month', created_at) as month from app_users group by month