fix wrong migration (#9381)

This commit is contained in:
Lunny Xiao 2019-12-17 14:58:30 +08:00 committed by GitHub
parent ffc904b1e0
commit 59fc29db38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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
@ -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
}