From 89a2cb30e679c7e3f2ae6254cd67f5b45eab27c4 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 16 Apr 2026 20:40:55 +0000 Subject: [PATCH] Save the type from the database on feature --- platform/types/feature.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/types/feature.go b/platform/types/feature.go index 438b97ad..1b73c9e1 100644 --- a/platform/types/feature.go +++ b/platform/types/feature.go @@ -4,5 +4,5 @@ type Feature struct { ID int32 `db:"id" json:"id"` Location Location `db:"location" json:"location"` SiteID int32 `db:"site_id" json:"-"` - Type string `db:"-" json:"type"` + Type string `db:"type" json:"type"` }