mirror of https://github.com/go-gitea/gitea.git
15 lines
356 B
Go
15 lines
356 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_22 //nolint
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddIgnoreStaleApprovalsColumnToProtectedBranchTable(x *xorm.Engine) error {
|
|
type ProtectedBranch struct {
|
|
IgnoreStaleApprovals bool `xorm:"NOT NULL DEFAULT false"`
|
|
}
|
|
return x.Sync(new(ProtectedBranch))
|
|
}
|