mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 06:52:37 +00:00
e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
22 lines
411 B
Go
22 lines
411 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_14 //nolint
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddChangedProtectedFilesPullRequestColumn(x *xorm.Engine) error {
|
|
type PullRequest struct {
|
|
ChangedProtectedFiles []string `xorm:"TEXT JSON"`
|
|
}
|
|
|
|
if err := x.Sync2(new(PullRequest)); err != nil {
|
|
return fmt.Errorf("Sync2: %w", err)
|
|
}
|
|
return nil
|
|
}
|