glpi-project / telemetry

Telemetry & references for your projects
https://glpi-project.github.io/telemetry/
MIT License
6 stars 2 forks source link

graph for evolution of reference submission #39

Open orthagh opened 6 years ago

orthagh commented 6 years ago
SELECT date_trunc('month', created_at) AS month, 
   COUNT(id) as cpt
FROM reference
GROUP BY month
ORDER BY month;