forked from baron/baron-sso
12 lines
276 B
Go
12 lines
276 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
// SystemSetting stores small global configuration documents.
|
|
type SystemSetting struct {
|
|
Key string `gorm:"primaryKey;size:128" json:"key"`
|
|
Value JSONMap `gorm:"type:jsonb" json:"value"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|