1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-30 00:58:30 +02:00

initial public commit

This commit is contained in:
Gani Georgiev
2022-07-07 00:19:05 +03:00
commit 3d07f0211d
484 changed files with 92412 additions and 0 deletions

22
models/param.go Normal file
View File

@@ -0,0 +1,22 @@
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"
}