Testing the following queries:

```
Select
Date_trunc('month', s0."inserted_at") as month_bucket
From "snippets" as s0
Group by month_bucket, s0."private"
Order by month_bucket asc;

Select
Date_trunc('month', s0."inserted_at" at time zone 'america/chicago') as month_bucket,
Count(*),
Private
From "snippets" as s0
Where date_trunc('month', s0."inserted_at" at time zone 'america/chicago') >= date_trunc('year', now())
Group by month_bucket, s0."private"
Order by month_bucket;
```