Fixed float variable types

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent b508efd5a8
commit 6bb06205b0
2 changed files with 9 additions and 9 deletions

View File

@ -6,9 +6,9 @@ import (
type Result struct {
gorm.Model
AverageScore float
MinimumScore float
MaximumScore float
AverageScore float32
MinimumScore float32
MaximumScore float32
// belongs to Hardware
HardwareID int