summaryrefslogtreecommitdiff
path: root/pkg/model/version.go
diff options
context:
space:
mode:
authorJulien Dessaux2025-01-31 20:53:29 +0100
committerJulien Dessaux2025-01-31 20:53:29 +0100
commitab548d249b56988823cc91fa46ad7bfff0d75250 (patch)
treebc2c5c5e480a462eab19d873382bf11abacdffbe /pkg/model/version.go
parentfeat(webui): bootstrap account settings management with light and dark mode (diff)
downloadtfstated-main.tar.gz
tfstated-main.tar.bz2
tfstated-main.zip
chore(tfstated): change database account id format to uuidv7HEADmain
Diffstat (limited to 'pkg/model/version.go')
-rw-r--r--pkg/model/version.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/model/version.go b/pkg/model/version.go
index d8c3603..f07db45 100644
--- a/pkg/model/version.go
+++ b/pkg/model/version.go
@@ -1,13 +1,14 @@
package model
import (
+ "encoding/json"
"time"
)
type Version struct {
- AccountId int
+ AccountId string
Created time.Time
- Data []byte
+ Data json.RawMessage
Id int
Lock *string
StateId int