Files
cybertron/models/db/Release.go
Varnit Goyal f75297880d TP-55555 | crud ingestor (#2)
* TP-55555 | crud ingestor

* TP-55555 | Project handler (#4)

---------

Co-authored-by: Lokesh Dugar <lokesh.dugar@navi.com>
2024-07-24 12:51:37 +05:30

10 lines
166 B
Go

package db
import "gorm.io/gorm"
type Release struct {
gorm.Model
ProjectReferenceId string `gorm:"primaryKey"`
ReleaseVersion string `gorm:"column:name"`
}