diff options
Diffstat (limited to 'models/migrations/v17.go')
-rw-r--r-- | models/migrations/v17.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/models/migrations/v17.go b/models/migrations/v17.go new file mode 100644 index 00000000..6769b754 --- /dev/null +++ b/models/migrations/v17.go @@ -0,0 +1,14 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package migrations + +import ( + "github.com/go-xorm/xorm" +) + +func removeInvalidProtectBranchWhitelist(x *xorm.Engine) error { + _, err := x.Exec("DELETE FROM protect_branch_whitelist WHERE protect_branch_id = 0") + return err +} |