gitea源码

v137.go 322B

12345678910111213141516
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_12
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func AddBlockOnOutdatedBranch(x *xorm.Engine) error {
  8. type ProtectedBranch struct {
  9. BlockOnOutdatedBranch bool `xorm:"NOT NULL DEFAULT false"`
  10. }
  11. return x.Sync(new(ProtectedBranch))
  12. }