Fix bug on release publisherid migrations (#13410)
Co-authored-by: John Olheiser <[email protected]>
This commit is contained in:
co-authored by
John Olheiser
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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user