You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
synctv/internal/model/setting.go

17 lines
345 B
Go

package model
1 year ago
type SettingType string
const (
SettingTypeBool SettingType = "bool"
SettingTypeInt64 SettingType = "int64"
SettingTypeFloat64 SettingType = "float64"
SettingTypeString SettingType = "string"
)
type Setting struct {
Name string `gorm:"primaryKey"`
Value string
1 year ago
Type SettingType `gorm:"not null;default:string"`
}