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/20211008043855_remove_notes_trigram_index.rb')
-rw-r--r--db/migrate/20211008043855_remove_notes_trigram_index.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20211008043855_remove_notes_trigram_index.rb b/db/migrate/20211008043855_remove_notes_trigram_index.rb
deleted file mode 100644
index a20ef1852e2..00000000000
--- a/db/migrate/20211008043855_remove_notes_trigram_index.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNotesTrigramIndex < Gitlab::Database::Migration[1.0]
- disable_ddl_transaction!
-
- NOTES_TRIGRAM_INDEX_NAME = 'index_notes_on_note_trigram'
-
- def up
- remove_concurrent_index_by_name(:notes, NOTES_TRIGRAM_INDEX_NAME)
- end
-
- def down
- add_concurrent_index :notes, :note, name: NOTES_TRIGRAM_INDEX_NAME, using: :gin, opclass: { content: :gin_trgm_ops }
- end
-end