Semaphore/models/Repository.go

17 lines
477 B
Go
Raw Normal View History

2016-04-04 15:44:34 +02:00
package models
import "github.com/ansible-semaphore/semaphore/database"
2016-04-04 15:44:34 +02:00
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")
2016-04-04 15:44:34 +02:00
}