fix hashed files not containing addon ID

This commit is contained in:
Sotirios Pupakis
2025-09-06 19:04:40 +02:00
parent ae534a87dd
commit 3f77524f66
3 changed files with 1 additions and 1 deletions

View File

@@ -6,6 +6,6 @@ type AddonFile struct {
gorm.Model
Path string `json:"path"`
Hash string `json:"hash" gorm:"index"`
AddonID string `json:"-"`
AddonID string `json:"addonid" gorm:"index"`
Version string `json:"version"`
}