mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
32 lines
406 B
Go
32 lines
406 B
Go
package kvstore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Item stored in k/v store.
|
|
type Item struct {
|
|
Id int64
|
|
OrgId *int64
|
|
Namespace *string
|
|
Key *string
|
|
Value string
|
|
|
|
Created time.Time
|
|
Updated time.Time
|
|
}
|
|
|
|
func (i *Item) TableName() string {
|
|
return "kv_store"
|
|
}
|
|
|
|
type Key struct {
|
|
OrgId int64
|
|
Namespace string
|
|
Key string
|
|
}
|
|
|
|
func (i *Key) TableName() string {
|
|
return "kv_store"
|
|
}
|