aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/models/package.go')
-rw-r--r--pkg/models/package.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/models/package.go b/pkg/models/package.go
index bb916e3..5c34aad 100644
--- a/pkg/models/package.go
+++ b/pkg/models/package.go
@@ -9,9 +9,9 @@ type Package struct {
Versions []*Version `pg:",fk:atom"`
Longdescription string
Maintainers []*Maintainer
- Commits []*Commit `pg:"many2many:commit_to_packages,joinFK:commit_id"`
- PrecedingCommits int `pg:",use_zero"`
- PkgCheckResults []*PkgCheckResult `pg:",fk:atom"`
+ Commits []*Commit `pg:"many2many:commit_to_packages,joinFK:commit_id"`
+ PrecedingCommits int `pg:",use_zero"`
+ PkgCheckResults []*PkgCheckResult `pg:",fk:atom"`
Outdated []*OutdatedPackages `pg:",fk:atom"`
}