mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-22 13:25:36 +03:00
Fix bug on release publisherid migrations (#13410)
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
This commit is contained in:
parent
fa8492fb70
commit
afb3a5c1d5
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@ func fixPublisherIDforTagReleases(x *xorm.Engine) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := sess.Limit(batchSize, start).Asc("repo_id", "id").Where("is_tag=?", true).Find(&releases); err != nil {
|
if err := sess.Limit(batchSize, start).
|
||||||
|
Where("publisher_id = 0").
|
||||||
|
Asc("repo_id", "id").Where("is_tag=?", true).
|
||||||
|
Find(&releases); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue