2022-07-01 18:04:01 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-07-01 18:04:01 +02:00
|
|
|
|
2022-12-08 09:21:37 +01:00
|
|
|
package v1_17 //nolint
|
2022-07-01 18:04:01 +02:00
|
|
|
|
|
|
|
import (
|
2022-09-03 18:27:59 +02:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-07-01 18:04:01 +02:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
"xorm.io/xorm/schemas"
|
|
|
|
)
|
|
|
|
|
|
|
|
type improveActionTableIndicesAction struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UserID int64 // Receiver user id.
|
|
|
|
OpType int
|
|
|
|
ActUserID int64 // Action user id.
|
|
|
|
RepoID int64
|
|
|
|
CommentID int64 `xorm:"INDEX"`
|
|
|
|
IsDeleted bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
RefName string
|
|
|
|
IsPrivate bool `xorm:"NOT NULL DEFAULT false"`
|
|
|
|
Content string `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"created"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TableName sets the name of this table
|
|
|
|
func (*improveActionTableIndicesAction) TableName() string {
|
|
|
|
return "action"
|
|
|
|
}
|
|
|
|
|
|
|
|
// TableIndices implements xorm's TableIndices interface
|
|
|
|
func (*improveActionTableIndicesAction) TableIndices() []*schemas.Index {
|
|
|
|
repoIndex := schemas.NewIndex("r_u_d", schemas.IndexType)
|
|
|
|
repoIndex.AddColumn("repo_id", "user_id", "is_deleted")
|
|
|
|
|
|
|
|
actUserIndex := schemas.NewIndex("au_r_c_u_d", schemas.IndexType)
|
|
|
|
actUserIndex.AddColumn("act_user_id", "repo_id", "created_unix", "user_id", "is_deleted")
|
2022-09-03 18:27:59 +02:00
|
|
|
indices := []*schemas.Index{actUserIndex, repoIndex}
|
2023-03-07 11:51:06 +01:00
|
|
|
if setting.Database.Type.IsPostgreSQL() {
|
2022-09-03 18:27:59 +02:00
|
|
|
cudIndex := schemas.NewIndex("c_u_d", schemas.IndexType)
|
|
|
|
cudIndex.AddColumn("created_unix", "user_id", "is_deleted")
|
|
|
|
indices = append(indices, cudIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
return indices
|
2022-07-01 18:04:01 +02:00
|
|
|
}
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func ImproveActionTableIndices(x *xorm.Engine) error {
|
2023-08-13 21:17:21 +02:00
|
|
|
return x.Sync(&improveActionTableIndicesAction{})
|
2022-07-01 18:04:01 +02:00
|
|
|
}
|