package db import ( "github.com/google/uuid" "gorm.io/gorm" ) type Release struct { gorm.Model ReleaseId uuid.UUID ProjectReferenceId string `gorm:"primaryKey"` ReleaseVersion string `gorm:"column:name"` SourceMapUrl string }