Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-29 21:09:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-29 21:09:26 +0300
commit7fe1490a589010205896293ec225dfcc88676a9e (patch)
tree565f6771a34ef557a6dcdd37f46f379e904f0a45 /db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb
parenta466e9450d5949aa762913729918db02b5d27761 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb')
-rw-r--r--db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb b/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb
new file mode 100644
index 00000000000..2d3181dea67
--- /dev/null
+++ b/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class AddMetricsIndexToAuthenticationEvents < Gitlab::Database::Migration[2.0]
+ INDEX_NAME = 'index_successful_authentication_events_for_metrics'
+ disable_ddl_transaction!
+
+ def up
+ add_concurrent_index :authentication_events,
+ %i[user_id provider created_at],
+ where: "result = 1",
+ name: INDEX_NAME
+ end
+
+ def down
+ remove_concurrent_index_by_name :authentication_events, INDEX_NAME
+ end
+end