package model
type Settings struct {
Model
Key string `gorm:"column:key;type:varchar(256);index:unique;not null;comment: setting key" json:"key"`
Value string `gorm:"column:value;type:varchar(256);not null;comment: setting value" json:"value"`
}