package models import "github.com/jinzhu/gorm" type BadgeAPIValue struct { gorm.Model BadgeULID string `gorm:"column:ulid;type:varchar;not null" json:"ulid"` Value string `gorm:"not null;" json:"value"` }