Skip to content

Commit

Permalink
fix wrong migration (#9381)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny authored Dec 17, 2019
1 parent ffc904b commit 59fc29d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion models/migrations/v112.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ func removeAttachmentMissedRepo(x *xorm.Engine) error {
attachments := make([]*Attachment, 0, 50)
for {
err := x.Select("uuid").Where(builder.NotIn("release_id", builder.Select("id").From("`release`"))).
And("release_id > 0").
OrderBy("id").Limit(50, start).Find(&attachments)
if err != nil {
return err
Expand All @@ -36,6 +37,6 @@ func removeAttachmentMissedRepo(x *xorm.Engine) error {
attachments = attachments[:0]
}

_, err := x.Exec("DELETE FROM attachment WHERE release_id NOT IN (SELECT id FROM `release`)")
_, err := x.Exec("DELETE FROM attachment WHERE release_id > 0 AND release_id NOT IN (SELECT id FROM `release`)")
return err
}

0 comments on commit 59fc29d

Please sign in to comment.