mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
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))
|
||
|
}
|