From f61ac7397cd4f66d0ffea7228a7d7c247007d35e Mon Sep 17 00:00:00 2001 From: Jeff Ortel Date: Fri, 26 Jan 2024 11:11:37 -0800 Subject: [PATCH] Fix json export. Signed-off-by: Jeff Ortel --- model/pkg.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/model/pkg.go b/model/pkg.go index b2689ce16..0271d4aa6 100644 --- a/model/pkg.go +++ b/model/pkg.go @@ -2,11 +2,10 @@ package model import ( "github.com/konveyor/tackle2-hub/migration/v12/model" - "gorm.io/datatypes" ) // Field (data) types. -type JSON = datatypes.JSON +type JSON = model.JSON // Models type Model = model.Model