package entities import ( "github.com/google/uuid" "gorm.io/gorm" "time" ) type Release struct { gorm.Model ID uuid.UUID `gorm:"type:uuid;primaryKey;default:uuid_generate_v4()"` Name string Description string Version string CreatedAt time.Time UpdatedAt time.Time ProjectId uuid.UUID SprintId uuid.UUID ExpectedDeliveryDate time.Time FinalDeliveryDate time.Time }