Merge pull request #9 from navi-ppl/TP-55555/temp

TP-55555 | temp
This commit is contained in:
Varnit Goyal
2024-07-31 13:55:40 +05:30
committed by GitHub

View File

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