Fix bug on release publisherid migrations (#13410)

Co-authored-by: John Olheiser <john.olheiser@gmail.com>
mj-v1.14.3
Lunny Xiao 3 years ago committed by GitHub
parent fa8492fb70
commit afb3a5c1d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save