2019-09-20 11:15:38 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-09-20 11:15:38 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_10 //nolint
|
2019-09-20 11:15:38 +05:30
|
|
|
|
2019-10-17 14:56:49 +05:30
|
|
|
import "xorm.io/xorm"
|
2019-09-20 11:15:38 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func AddCrossReferenceColumns(x *xorm.Engine) error {
|
2019-09-20 11:15:38 +05:30
|
|
|
// Comment see models/comment.go
|
|
|
|
type Comment struct {
|
|
|
|
RefRepoID int64 `xorm:"index"`
|
|
|
|
RefIssueID int64 `xorm:"index"`
|
|
|
|
RefCommentID int64 `xorm:"index"`
|
|
|
|
RefAction int64 `xorm:"SMALLINT"`
|
|
|
|
RefIsPull bool
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(Comment))
|
|
|
|
}
|