Skip to content

Commit

Permalink
chore(script): new users by month
Browse files Browse the repository at this point in the history
  • Loading branch information
neurosnap committed Dec 24, 2024
1 parent 21bf786 commit adb2bd3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/mau.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ select
from projects
group by month
order by month DESC;

select
count(id) as users,
date_trunc('month', created_at) as month
from app_users
group by month
order by month DESC;

0 comments on commit adb2bd3

Please sign in to comment.