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:
Diffstat (limited to 'db/migrate/20200727082309_remove_index_chat_name_service_id.rb')
-rw-r--r--db/migrate/20200727082309_remove_index_chat_name_service_id.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20200727082309_remove_index_chat_name_service_id.rb b/db/migrate/20200727082309_remove_index_chat_name_service_id.rb
new file mode 100644
index 00000000000..49cda2dd41f
--- /dev/null
+++ b/db/migrate/20200727082309_remove_index_chat_name_service_id.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class RemoveIndexChatNameServiceId < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ remove_concurrent_index :chat_names, :service_id
+ end
+
+ def down
+ add_concurrent_index :chat_names, :service_id
+ end
+end