mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04: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
@ -68,7 +68,10 @@ func fixPublisherIDforTagReleases(x *xorm.Engine) error {
|
||||
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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user