v17.go 386 B

1234567891011121314
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package migrations
  5. import (
  6. "github.com/go-xorm/xorm"
  7. )
  8. func removeInvalidProtectBranchWhitelist(x *xorm.Engine) error {
  9. _, err := x.Exec("DELETE FROM protect_branch_whitelist WHERE protect_branch_id = 0")
  10. return err
  11. }