Semaphore/db/Repository.go

13 lines
417 B
Go
Raw Normal View History

2017-02-23 06:12:16 +01:00
package db
2016-04-04 15:44:34 +02:00
type Repository struct {
ID int `db:"id" json:"id"`
Name string `db:"name" json:"name" binding:"required"`
2016-04-04 15:44:34 +02:00
ProjectID int `db:"project_id" json:"project_id"`
GitUrl string `db:"git_url" json:"git_url" binding:"required"`
SshKeyID int `db:"ssh_key_id" json:"ssh_key_id" binding:"required"`
Removed bool `db:"removed" json:"removed"`
SshKey AccessKey `db:"-" json:"-"`
}