mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-12-04 15:21:05 +01:00
2e1ad91e7a
- Link models with tables - Basic API to fetch everything
17 lines
477 B
Go
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")
|
|
}
|