#1141 introduces expired stations support but the data goes back for an arbitrarily period of time. We should introduce a separate threshold for those. Need data to see what would be a reasonable default.
SELECT
DATE(FROM_UNIXTIME(end_time)) AS end_date,
COUNT(*) AS station_count
FROM station
GROUP BY end_date
ORDER BY end_date;
#1141 introduces expired stations support but the data goes back for an arbitrarily period of time. We should introduce a separate threshold for those. Need data to see what would be a reasonable default.