2020-03-26 23:26:34 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-03-26 23:26:34 +01:00
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
package v1_12 //nolint
|
2020-03-26 23:26:34 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func AddBranchProtectionProtectedFilesColumn(x *xorm.Engine) error {
|
2020-03-26 23:26:34 +01:00
|
|
|
type ProtectedBranch struct {
|
|
|
|
ProtectedFilePatterns string `xorm:"TEXT"`
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := x.Sync2(new(ProtectedBranch)); err != nil {
|
2022-10-24 21:29:17 +02:00
|
|
|
return fmt.Errorf("Sync2: %w", err)
|
2020-03-26 23:26:34 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|