Skip to content

Commit cd46a58

Browse files
authored
fix(artifact): correct typo in artifact_type column definition (#22656)
Signed-off-by: chlins <[email protected]>
1 parent 7c61de7 commit cd46a58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pkg/artifact/dao/model.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type Artifact struct {
3333
Type string `orm:"column(type)"` // image, chart or other OCI compatible
3434
MediaType string `orm:"column(media_type)"` // the media type of artifact
3535
ManifestMediaType string `orm:"column(manifest_media_type)"` // the media type of manifest/index
36-
ArtifactType string `orm:"colume(artifact_type)"` // the artifactType of manifest/index
36+
ArtifactType string `orm:"column(artifact_type)"` // the artifactType of manifest/index
3737
ProjectID int64 `orm:"column(project_id)"` // needed for quota
3838
RepositoryID int64 `orm:"column(repository_id)"`
3939
RepositoryName string `orm:"column(repository_name)"`

0 commit comments

Comments
 (0)