@golemio/parkings 1.7.11-dev.1187905601 → 1.7.11-dev.1188124768
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -62,5 +62,5 @@ $$
|
|
|
62
62
|
CREATE OR REPLACE VIEW v_parkings_latest_measurements AS
|
|
63
63
|
SELECT DISTINCT ON (source, source_id) *
|
|
64
64
|
FROM parkings_measurements_part m
|
|
65
|
-
WHERE
|
|
65
|
+
WHERE date_modified >= NOW() - INTERVAL '1h'
|
|
66
66
|
ORDER BY m.source ASC, m.source_id ASC, m.date_modified DESC;
|