mirror of
https://github.com/knadh/listmonk.git
synced 2025-12-06 00:10:03 +01:00
Fix sorting in camapaign analytics view counts.
This commit is contained in:
@@ -703,7 +703,7 @@ uniqIDs AS (
|
||||
ORDER BY subscriber_id, "timestamp"
|
||||
)
|
||||
SELECT COUNT(*) AS "count", campaign_id, "timestamp"
|
||||
FROM uniqIDs GROUP BY campaign_id, "timestamp";
|
||||
FROM uniqIDs GROUP BY campaign_id, "timestamp" ORDER BY "timestamp" ASC;
|
||||
|
||||
-- name: get-campaign-analytics-counts
|
||||
-- raw: true
|
||||
|
||||
Reference in New Issue
Block a user