rally_exporter/models/environments.go
Mohammed Naser b5c01d934e Initial commit
Change-Id: I28d08648ccfae8393c302c5cb9651637040b271d
2020-04-05 20:55:37 -04:00

15 lines
424 B
Go

package models
type Environment struct {
Model
ID uint `gorm:"primary_key;not null"`
UUID string `gorm:"type:varchar(36);not null"`
Name string `gorm:"type:varchar(255);not null"`
Description string `gorm:"type:text"`
Status string `gorm:"type:varchar(36);not null"`
Extras string `gorm:"type:text"`
Config string `gorm:"type:text"`
Spec string `gorm:"type:text"`
}