2020-10-12 19:55:13 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-12 19:55:13 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_13 //nolint
|
2020-10-12 19:55:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddTeamReviewRequestSupport(x *xorm.Engine) error {
|
2020-10-12 19:55:13 +00:00
|
|
|
type Review struct {
|
|
|
|
ReviewerTeamID int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Comment struct {
|
|
|
|
AssigneeTeamID int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := x.Sync2(new(Review)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(Comment))
|
|
|
|
}
|