aboutsummaryrefslogtreecommitdiffstats
path: root/models/migrations
diff options
context:
space:
mode:
authorJakobDev <jakobdev@gmx.de>2023-10-04 03:41:25 +0200
committerGitHub <noreply@github.com>2023-10-03 21:41:25 -0400
commit4636f56e7b519ec74f15f0cfd6ef4a428088a960 (patch)
treeac155eee069aafef89bf968a31ef4f6fc6670056 /models/migrations
parentb37f3332f1ff95ce1390d11c3a61f40f47396558 (diff)
downloadgitea-4636f56e7b519ec74f15f0cfd6ef4a428088a960.tar.gz
gitea-4636f56e7b519ec74f15f0cfd6ef4a428088a960.zip
Add Index to `action.user_id` (#27403)
Another Column that needs a Index. Found at https://codeberg.org/forgejo/discussions/issues/61#issuecomment-1258744. Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'models/migrations')
-rw-r--r--models/migrations/migrations.go2
-rw-r--r--models/migrations/v1_21/v279.go16
2 files changed, 18 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go
index 4527bcc1ae..020043cfc3 100644
--- a/models/migrations/migrations.go
+++ b/models/migrations/migrations.go
@@ -538,6 +538,8 @@ var migrations = []Migration{
NewMigration("Add Index to issue_user.issue_id", v1_21.AddIndexToIssueUserIssueID),
// v278 -> v279
NewMigration("Add Index to comment.dependent_issue_id", v1_21.AddIndexToCommentDependentIssueID),
+ // v279 -> v280
+ NewMigration("Add Index to action.user_id", v1_21.AddIndexToActionUserID),
}
// GetCurrentDBVersion returns the current db version
diff --git a/models/migrations/v1_21/v279.go b/models/migrations/v1_21/v279.go
new file mode 100644
index 0000000000..19647225c9
--- /dev/null
+++ b/models/migrations/v1_21/v279.go
@@ -0,0 +1,16 @@
+// Copyright 2023 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package v1_21 //nolint
+
+import (
+ "xorm.io/xorm"
+)
+
+func AddIndexToActionUserID(x *xorm.Engine) error {
+ type Action struct {
+ UserID int64 `xorm:"INDEX"`
+ }
+
+ return x.Sync(new(Action))
+}