mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
feat(coderd/database): order user engagement statistics by date (#16142)
This PR orders user engagement statistics by date as mentioned [here](https://github.com/coder/coder/pull/16134/files#diff-1844f895bb005f036da11d800fe2a76b54bfddd481c5d8cb15f210c64679caa5R47)
This commit is contained in:
@ -900,5 +900,5 @@ SELECT
|
||||
) AS count
|
||||
FROM ranked_status_change_per_user_per_date rscpupd
|
||||
CROSS JOIN statuses
|
||||
GROUP BY rscpupd.date, statuses.new_status;
|
||||
|
||||
GROUP BY rscpupd.date, statuses.new_status
|
||||
ORDER BY rscpupd.date;
|
||||
|
Reference in New Issue
Block a user