2022-04-28 15:45:33 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-28 15:45:33 +00:00
|
|
|
|
2022-12-08 08:21:37 +00:00
|
|
|
package v1_17 //nolint
|
2022-04-28 15:45:33 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddAllowMaintainerEdit(x *xorm.Engine) error {
|
2022-04-28 15:45:33 +00:00
|
|
|
// PullRequest represents relation between pull request and repositories.
|
|
|
|
type PullRequest struct {
|
|
|
|
AllowMaintainerEdit bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(PullRequest))
|
|
|
|
}
|