You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
406 B

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"
}