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