19 lines
289 B
Go
19 lines
289 B
Go
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Test struct {
|
|
gorm.Model
|
|
Name string
|
|
Description string
|
|
|
|
// belongs to hardware
|
|
HardwareID int
|
|
Hardware Hardware
|
|
|
|
// many-to-many benchmarks
|
|
Benchmarks[] Benchmark `gorm:"many2many:tests_benchmarks;"`
|
|
}
|