Files
cybertron/models/db/release.go

15 lines
419 B
Go
Raw Permalink Normal View History

2024-08-16 13:47:08 +05:30
package db
import (
"time"
)
2024-08-16 13:47:08 +05:30
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"`
2024-08-16 13:47:08 +05:30
}