change db types for better handling

This commit is contained in:
2025-10-23 17:23:52 +02:00
parent 5e8ccc6be1
commit 28c2c6a5d6
3 changed files with 21 additions and 7 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ type MeteoData struct {
MaxTemp float32 `csv:"temperatura maxima"`
MinTemp float32 `csv:"temperatura minima"`
Rainfall float32 `csv:"precipitacion"`
Cloudiness float32 `csv:"nubosidad"`
Cloudiness int `csv:"nubosidad"`
}
type RejectedMeteoData struct {