aboutsummaryrefslogtreecommitdiff
path: root/server/store/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/store/store.go')
-rw-r--r--server/store/store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/store/store.go b/server/store/store.go
index b620e6d..c93680b 100644
--- a/server/store/store.go
+++ b/server/store/store.go
@@ -36,6 +36,7 @@ type CertStorer interface {
// A CertRecord is a representation of a ssh certificate used by a CertStorer.
type CertRecord struct {
+ ID int `json:"-" db:"id"`
KeyID string `json:"key_id" db:"key_id"`
Principals StringSlice `json:"principals" db:"principals"`
CreatedAt time.Time `json:"created_at" db:"created_at"`