Files

16 lines
445 B
Go
Raw Permalink Normal View History

2018-12-11 12:28:37 +01:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2018-12-11 12:28:37 +01:00
2025-06-27 07:59:55 +02:00
package v1_7
2018-12-11 12:28:37 +01:00
2019-10-17 17:26:49 +08:00
import "xorm.io/xorm"
2018-12-11 12:28:37 +01:00
2022-11-02 16:54:36 +08:00
func AddApprovalWhitelistsToProtectedBranches(x *xorm.Engine) error {
2018-12-11 12:28:37 +01:00
type ProtectedBranch struct {
ApprovalsWhitelistUserIDs []int64 `xorm:"JSON TEXT"`
ApprovalsWhitelistTeamIDs []int64 `xorm:"JSON TEXT"`
RequiredApprovals int64 `xorm:"NOT NULL DEFAULT 0"`
}
2023-08-13 21:17:21 +02:00
return x.Sync(new(ProtectedBranch))
2018-12-11 12:28:37 +01:00
}