Skip to content

Commit

Permalink
test update 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vayras committed May 23, 2024
1 parent 438370b commit d76b3a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions db/structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ type Bounty struct {
MarkAsPaidDate *time.Time `json:"mark_as_paid_date,omitempty"`
PaidDate *time.Time `json:"paid_date,omitempty"`
CodingLanguages pq.StringArray `gorm:"type:text[];not null default:'[]'" json:"coding_languages"`
PhaseUuid *string `json:"phase_uuid,omitempty"`
PhasePriority *int `json:"phase_priority,omitempty"`
PhaseUuid *string `json:"phase_uuid"`
PhasePriority *int `json:"phase_priority"`
}

// Todo: Change back to Bounty
Expand Down Expand Up @@ -424,8 +424,8 @@ type NewBounty struct {
MarkAsPaidDate *time.Time `json:"mark_as_paid_date,omitempty"`
PaidDate *time.Time `json:"paid_date,omitempty"`
CodingLanguages pq.StringArray `gorm:"type:text[];not null default:'[]'" json:"coding_languages"`
PhaseUuid *string `json:"phase_uuid,omitempty"`
PhasePriority *int `json:"phase_priority,omitempty"`
PhaseUuid *string `json:"phase_uuid"`
PhasePriority *int `json:"phase_priority"`
}

type BountyOwners struct {
Expand Down

0 comments on commit d76b3a5

Please sign in to comment.