| 86 | } |
| 87 | |
| 88 | type DbPipelineLabel struct { |
| 89 | CreatedAt time.Time `json:"createdAt"` |
| 90 | UpdatedAt time.Time `json:"updatedAt"` |
| 91 | PipelineId uint64 `json:"pipeline_id" gorm:"primaryKey"` |
| 92 | Name string `json:"name" gorm:"primaryKey;index"` |
| 93 | } |
| 94 | |
| 95 | func (DbPipelineLabel) TableName() string { |
| 96 | return "_devlake_pipeline_labels" |
nothing calls this directly
no outgoing calls
no test coverage detected