| 26 | var _ plugin.Scope = (*CqProject)(nil) |
| 27 | |
| 28 | type 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 | |
| 37 | func (CqProject) TableName() string { |
| 38 | return "cq_projects" |
nothing calls this directly
no outgoing calls
no test coverage detected