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