Files
cybertron/models/db/release.go
2024-07-27 18:57:02 +05:30

15 lines
254 B
Go

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
}