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

16 lines
500 B
Go

package models
type Platform struct {
Model
ID uint `gorm:"primary_key;not null"`
UUID string `gorm:"type:varchar(36);not null"`
EnvUUID string `gorm:"type:varchar(36);not null"`
Status string `gorm:"type:varchar(36);not null"`
PluginName string `gorm:"type:varchar(36);not null"`
PluginSpec string `gorm:"type:text;not null"`
PluginData string `gorm:"type:text"`
PlatformName string `gorm:"type:varchar(36)"`
PlatformData string `gorm:"type:text"`
}