1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-21 13:35:49 +02:00
pocketbase/models/param.go
2022-07-07 00:19:05 +03:00

23 lines
329 B
Go

package models
import (
"github.com/pocketbase/pocketbase/tools/types"
)
var _ Model = (*Param)(nil)
const (
ParamAppSettings = "settings"
)
type Param struct {
BaseModel
Key string `db:"key" json:"key"`
Value types.JsonRaw `db:"value" json:"value"`
}
func (m *Param) TableName() string {
return "_params"
}