Files
scrutiny/webapp/backend/pkg/models/db/selftest.go
T
Jason Kulatunga 8482272d45 init
2020-08-19 16:04:21 -07:00

16 lines
303 B
Go

package db
import "time"
type SelfTest struct {
//GORM attributes, see: http://gorm.io/docs/conventions.html
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time
DeviceWWN string
Device Device `json:"-" gorm:"foreignkey:DeviceWWN"` // use DeviceWWN as foreign key
Date time.Time
}