Semaphore/models/Repository.go
Matej Kramny 2e1ad91e7a Running tasks
- Link models with tables
- Basic API to fetch everything
2016-04-07 13:49:34 +01:00

17 lines
477 B
Go

package models
import "github.com/ansible-semaphore/semaphore/database"
type Repository struct {
ID int `db:"id" json:"id"`
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"`
SshKey AccessKey `db:"-" json:"-"`
}
func init() {
database.Mysql.AddTableWithName(Repository{}, "project__repository").SetKeys(true, "id")
}