Fixed float variable types

This commit is contained in:
Gregory Ballantine
2024-05-29 11:41:53 -04:00
parent 958c72ee63
commit 0525838f4b
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