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 Inventory struct {
|
|
|
|
ID int `db:"id" json:"id"`
|
|
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
|
|
Inventory string `db:"inventory" json:"inventory"`
|
|
|
|
|
2016-04-08 21:41:20 +02:00
|
|
|
// accesses dynamic inventory
|
|
|
|
KeyID *int `db:"key_id" json:"key_id"`
|
|
|
|
Key AccessKey `db:"-" json:"-"`
|
|
|
|
// accesses hosts in inventory
|
|
|
|
SshKeyID *int `db:"ssh_key_id" json:"ssh_key_id"`
|
|
|
|
SshKey AccessKey `db:"-" json:"-"`
|
|
|
|
|
2016-04-04 15:44:34 +02:00
|
|
|
// static/aws/do/gcloud
|
|
|
|
Type string `db:"type" json:"type"`
|
|
|
|
}
|
2016-04-07 14:49:34 +02:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
database.Mysql.AddTableWithName(Inventory{}, "project__inventory").SetKeys(true, "id")
|
|
|
|
}
|