@ -29,6 +29,7 @@ class Database:
AVG(wind_speed) as avg_wind_speed,
GROUP_CONCAT(DISTINCT weather_description) as descriptions
FROM weather_forecast
WHERE DATE(utc) >= DATE(NOW())
GROUP BY DATE(utc)
ORDER BY date ASC
"""