mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-23 05:42:33 +09:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wxiaoguang <2114189+wxiaoguang@users.noreply.github.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
23 lines
457 B
Go
23 lines
457 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_13
|
|
|
|
import "code.gitea.io/gitea/models/db"
|
|
|
|
func AddTeamReviewRequestSupport(x db.EngineMigration) error {
|
|
type Review struct {
|
|
ReviewerTeamID int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
}
|
|
|
|
type Comment struct {
|
|
AssigneeTeamID int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
}
|
|
|
|
if err := x.Sync(new(Review)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return x.Sync(new(Comment))
|
|
}
|