Files
gitea/models/migrations/v1_16/v194.go
2026-05-18 03:56:39 +08:00

22 lines
426 B
Go

// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_16
import (
"fmt"
"code.gitea.io/gitea/models/db"
)
func AddBranchProtectionUnprotectedFilesColumn(x db.EngineMigration) error {
type ProtectedBranch struct {
UnprotectedFilePatterns string `xorm:"TEXT"`
}
if err := x.Sync(new(ProtectedBranch)); err != nil {
return fmt.Errorf("Sync: %w", err)
}
return nil
}