MCPcopy Index your code
hub / github.com/apache/devlake / Store

Struct Store

backend/core/models/project.go:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79type Store struct {
80 StoreKey string `gorm:"primaryKey;type:varchar(255)"`
81 StoreValue json.RawMessage `gorm:"type:json;serializer:json"`
82 CreatedAt time.Time `json:"createdAt" mapstructure:"createdAt"`
83 UpdatedAt time.Time `json:"updatedAt" mapstructure:"updatedAt"`
84}
85
86func (Store) TableName() string {
87 return "_devlake_store"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected