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

View File

@ -6,7 +6,10 @@ import (
type Benchmark struct {
gorm.Model
Name string
Name string
ScoringType string
Description string
// many-to-many test
Tests[] Test `gorm:"many2many:tests_benchmarks;"`
}