2024-07-24 12:51:37 +05:30
|
|
|
package db
|
|
|
|
|
|
2024-07-30 17:25:49 +05:30
|
|
|
import (
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
)
|
2024-07-24 12:51:37 +05:30
|
|
|
|
|
|
|
|
type Release struct {
|
|
|
|
|
gorm.Model
|
2024-07-30 17:25:49 +05:30
|
|
|
ReleaseId uuid.UUID
|
2024-07-24 12:51:37 +05:30
|
|
|
ProjectReferenceId string `gorm:"primaryKey"`
|
|
|
|
|
ReleaseVersion string `gorm:"column:name"`
|
2024-07-30 17:25:49 +05:30
|
|
|
SourceMapUrl string
|
2024-07-24 12:51:37 +05:30
|
|
|
}
|