blob: 6769b75406e7c6a5455f9eb9e33672b53b175a09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
|