2024-10-23 06:39:43 +02:00
|
|
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2025-06-27 07:59:55 +02:00
|
|
|
package v1_23
|
2024-10-23 06:39:43 +02:00
|
|
|
|
|
|
|
|
import "xorm.io/xorm"
|
|
|
|
|
|
|
|
|
|
func AddBlockAdminMergeOverrideBranchProtection(x *xorm.Engine) error {
|
|
|
|
|
type ProtectedBranch struct {
|
|
|
|
|
BlockAdminMergeOverride bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
|
}
|
2025-04-26 09:50:45 -07:00
|
|
|
_, err := x.SyncWithOptions(xorm.SyncOptions{
|
|
|
|
|
IgnoreConstrains: true,
|
|
|
|
|
IgnoreIndices: true,
|
|
|
|
|
}, new(ProtectedBranch))
|
|
|
|
|
return err
|
2024-10-23 06:39:43 +02:00
|
|
|
}
|