Lots of changes

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent e09d399c98
commit 7c13b1f209
16 changed files with 135 additions and 122 deletions

17
models/test.go Normal file
View File

@ -0,0 +1,17 @@
package models
import (
"gorm.io/gorm"
)
type Test struct {
gorm.Model
DateTag string
// belongs to hardware
HardwareID int
Hardware Hardware
// many-to-many benchmarks
Benchmarks[] Benchmark `gorm:"many2many:tests_benchmarks;"`
}