15 lines
419 B
Go
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"`
|
|
}
|