2024-08-16 13:47:08 +05:30
|
|
|
package db
|
|
|
|
|
|
2024-08-27 13:40:31 +05:30
|
|
|
import (
|
|
|
|
|
"time"
|
|
|
|
|
)
|
2024-08-16 13:47:08 +05:30
|
|
|
|
|
|
|
|
type Release struct {
|
2024-08-27 13:40:31 +05:30
|
|
|
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
|
|
|
}
|