From ab548d249b56988823cc91fa46ad7bfff0d75250 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 31 Jan 2025 20:53:29 +0100 Subject: chore(tfstated): change database account id format to uuidv7 --- pkg/model/version.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkg/model/version.go') 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 -- cgit v1.2.3