aboutsummaryrefslogtreecommitdiff
blob: 15bdaf57eb0ebf2866c148ddc238b000631e22bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package models

type Bug struct {
	Id        string `pg:",pk"`
	Product   string
	Component string
	Assignee  string
	Status    string
	Summary   string
}

type PackageToBug struct {
	Id          string `pg:",pk"`
	PackageAtom string
	BugId       string
}

type VersionToBug struct {
	Id        string `pg:",pk"`
	VersionId string
	BugId     string
}