Files
teletypegames/domain/model.release.go
T

13 lines
348 B
Go

package domain
import "gorm.io/gorm"
type Release struct {
gorm.Model
SoftwareID uint `gorm:"index" json:"software_id"`
Version string `gorm:"size:64" json:"version"`
CartridgePath string `gorm:"size:255" json:"-"`
SourcePath string `gorm:"size:255" json:"-"`
WebPlayable bool `gorm:"default:false" json:"web_playable"`
}