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