mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
18 lines
528 B
Go
18 lines
528 B
Go
package db
|
|
|
|
import "reflect"
|
|
|
|
type TerraformInventoryAlias struct {
|
|
ID int `db:"id" json:"id"`
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
InventoryID int `db:"inventory_id" json:"inventory_id"`
|
|
AuthKeyID int `db:"auth_key_id" json:"auth_key_id"`
|
|
Alias string `db:"alias" json:"alias"`
|
|
}
|
|
|
|
var TerraformInventoryAliasProps = ObjectProps{
|
|
TableName: "project__terraform_inventory_alias",
|
|
Type: reflect.TypeOf(TerraformInventoryAlias{}),
|
|
PrimaryColumnName: "id",
|
|
}
|