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

BIN
crawler - kopie.db Normal file

Binary file not shown.

BIN
crawler.db Normal file

Binary file not shown.

View File

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