Skip to content
Snippets Groups Projects
values.go 213 B
Newer Older
  • Learn to ignore specific revisions
  • package tables
    
    import "time"
    
    type Value struct {
    	ID          uint `gorm:"primaryKey"`
    	Date        time.Time
    	InstanceID  int
    	Instance    Instance
    	ValueTypeID int
    	ValueType   ValueType
    	Value       string
    }