aboutsummaryrefslogtreecommitdiff
blob: 623d282a1f695ebbfefab3d2d14fb3640a97534b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Contains the model of a package mask entry

package models

import "time"

type Mask struct {
	Versions    string `pg:",pk"`
	Author      string
	AuthorEmail string
	Date        time.Time
	Reason      string
}

type MaskToVersion struct {
	Id           string `pg:",pk"`
	MaskVersions string
	VersionId    string
}