repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
7c27c34
parent
9165d1d
author
Eric Bower
date
2026-04-17 22:18:24 -0400 EDT
chore: scripts
1 files changed,  +13, -0
M scripts/mau.sql
+13, -0
 1@@ -18,3 +18,16 @@ select
 2 from app_users
 3 group by month
 4 order by month DESC;
 5+
 6+select
 7+  count(id) as subs,
 8+  date_trunc('month', created_at) as month
 9+from feature_flags
10+where name = 'plus' and expires_at > now()
11+group by month
12+order by month DESC;
13+
14+select
15+	count(*) as total_subs
16+from feature_flags
17+where name = 'plus' and expires_at > now();