Files
cybertron/models/db/release.go
2024-08-27 13:40:31 +05:30

15 lines
419 B
Go

package db
import (
"time"
)
type Release struct {
ID int64 `json:"id" gorm:"autoIncrement:true"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DeletedAt time.Time `json:"deletedAt"`
ProjectReferenceId string `json:"projectReferenceId" gorm:"primaryKey"`
ReleaseVersion string `json:"releaseVersion" gorm:"primaryKey"`
}