Skip to content

Commit

Permalink
Merge branch 'release/v1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lmquang committed Jan 22, 2025
2 parents bc08e2b + 1a59925 commit 0aabd0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

-- +migrate Up
ALTER TABLE projects ADD COLUMN artifact_link VARCHAR(255);

-- +migrate Down
ALTER TABLE projects DROP COLUMN artifact_link;
1 change: 1 addition & 0 deletions pkg/model/projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ type Project struct {
DeliveryRating int
LeadRating int
ImportantLevel ProjectImportantLevel
ArtifactLink string `gorm:"default:null"`

ProjectNotion *ProjectNotion `gorm:"foreignKey:project_id"`
Organization *Organization
Expand Down

0 comments on commit 0aabd0c

Please sign in to comment.