From be0e1b009411c807238f16876f717e0035277f97 Mon Sep 17 00:00:00 2001 From: Jeff Ortel Date: Sun, 28 Jan 2024 09:58:32 -0600 Subject: [PATCH] :bug: Fix json export. (#597) Should be aliased from the model. 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