MCPcopy Create free account
hub / github.com/apache/devlake / CqProject

Struct CqProject

backend/core/models/domainlayer/codequality/cq_projects.go:28–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26var _ plugin.Scope = (*CqProject)(nil)
27
28type CqProject struct {
29 domainlayer.DomainEntityExtended
30 Name string `gorm:"type:varchar(2000)"`
31 Qualifier string `gorm:"type:varchar(255)"`
32 Visibility string `gorm:"type:varchar(64)"`
33 LastAnalysisDate *common.Iso8601Time
34 CommitSha string `gorm:"type:varchar(128)"`
35}
36
37func (CqProject) TableName() string {
38 return "cq_projects"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected