migration/v17: skip if protect_branch_whitelist table not exist (#4355)

pull/4361/head
Unknwon 2017-03-28 11:20:58 -04:00
parent 11ffdac3f8
commit 717bcc4ad8
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
1 changed files with 5 additions and 0 deletions

View File

@ -5,10 +5,15 @@
package migrations
import (
"strings"
"github.com/go-xorm/xorm"
)
func removeInvalidProtectBranchWhitelist(x *xorm.Engine) error {
_, err := x.Exec("DELETE FROM protect_branch_whitelist WHERE protect_branch_id = 0")
if strings.Contains(err.Error(), "no such table") {
return nil
}
return err
}