2020-04-17 03:00:36 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-17 03:00:36 +02:00
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
package v1_12 //nolint
|
2020-04-17 03:00:36 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func AddBlockOnOutdatedBranch(x *xorm.Engine) error {
|
2020-04-17 03:00:36 +02:00
|
|
|
type ProtectedBranch struct {
|
|
|
|
BlockOnOutdatedBranch bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
}
|
2023-08-13 21:17:21 +02:00
|
|
|
return x.Sync(new(ProtectedBranch))
|
2020-04-17 03:00:36 +02:00
|
|
|
}
|