This repository has been archived on 2025-07-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
analytics/ingest/db/models/config.go
2023-04-05 14:24:23 +01:00

10 lines
No EOL
142 B
Go

package models
import "github.com/uptrace/bun"
type Config struct {
bun.BaseModel `bun:"config"`
ID string `bun:",pk"`
Value string
}