summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb')
-rw-r--r--db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb b/db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb
new file mode 100644
index 00000000000..ab2842ea775
--- /dev/null
+++ b/db/post_migrate/20221227101436_drop_index_on_chat_names_on_user_id_and_integration_id.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class DropIndexOnChatNamesOnUserIdAndIntegrationId < Gitlab::Database::Migration[2.1]
+ disable_ddl_transaction!
+
+ INDEX_NAME = 'index_chat_names_on_user_id_and_integration_id'
+
+ def up
+ remove_concurrent_index_by_name(:chat_names, INDEX_NAME)
+ end
+
+ def down
+ add_concurrent_index(:chat_names, [:user_id, :integration_id], name: INDEX_NAME, unique: true)
+ end
+end