2016-04-04 15:44:34 +02:00
|
|
|
package models
|
|
|
|
|
2016-04-07 14:49:34 +02:00
|
|
|
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"`
|
2016-04-07 14:49:34 +02:00
|
|
|
|
|
|
|
SshKey AccessKey `db:"-" json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
database.Mysql.AddTableWithName(Repository{}, "project__repository").SetKeys(true, "id")
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|