aboutsummaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_23/v306.go
blob: 276b438e95bcf0929a7943a7d61a43921cf9370a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint

import "xorm.io/xorm"

func AddBlockAdminMergeOverrideBranchProtection(x *xorm.Engine) error {
	type ProtectedBranch struct {
		BlockAdminMergeOverride bool `xorm:"NOT NULL DEFAULT false"`
	}
	return x.Sync(new(ProtectedBranch))
}