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
path: root/db
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-10 21:08:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-10 21:08:34 +0300
commite108710cd11b7f9d6d7a1fc617896f53e45e2a87 (patch)
treee9f21dc68df359e7ee42036fff5862d7b2682e1e /db
parentf93ec4cb3933e2fe25b90844a6671f2bf312c5a3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20230404194908_remove_mr_state_id_temp_index.rb14
-rw-r--r--db/schema_migrations/202304041949081
2 files changed, 15 insertions, 0 deletions
diff --git a/db/post_migrate/20230404194908_remove_mr_state_id_temp_index.rb b/db/post_migrate/20230404194908_remove_mr_state_id_temp_index.rb
new file mode 100644
index 00000000000..4b469666167
--- /dev/null
+++ b/db/post_migrate/20230404194908_remove_mr_state_id_temp_index.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+class RemoveMrStateIdTempIndex < Gitlab::Database::Migration[2.1]
+ INDEX_NAME = 'merge_requests_state_id_temp_index'
+
+ # TODO: Index to be destroyed synchronously in https://gitlab.com/gitlab-org/gitlab/-/issues/402497
+ def up
+ prepare_async_index_removal :merge_requests, :state_id, name: INDEX_NAME
+ end
+
+ def down
+ unprepare_async_index :merge_requests, :state_id, name: INDEX_NAME
+ end
+end
diff --git a/db/schema_migrations/20230404194908 b/db/schema_migrations/20230404194908
new file mode 100644
index 00000000000..c9324dbc016
--- /dev/null
+++ b/db/schema_migrations/20230404194908
@@ -0,0 +1 @@
+de2093c0fe297431a5a8275f482bcbf75d2672421b08942da0dcdaf6a26e1d8f \ No newline at end of file