summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb')
-rw-r--r--db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb b/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb
deleted file mode 100644
index aed9d335af9..00000000000
--- a/db/post_migrate/20191212162434_change_commit_user_mentions_commit_id_column_type_cleanup.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# frozen_string_literal: true
-
-class ChangeCommitUserMentionsCommitIdColumnTypeCleanup < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- NEW_INDEX = 'commit_id_for_type_change_and_note_id_index'
- OLD_INDEX = 'commit_user_mentions_on_commit_id_and_note_id_index'
-
- def up
- cleanup_concurrent_column_type_change :commit_user_mentions, :commit_id
- end
-
- def down
- change_column_type_concurrently :commit_user_mentions, :commit_id, :binary
-
- # change_column_type_concurrently creates a new index based on existing commit_id_and_note_id_index` naming it
- # `commit_id_for_type_change_and_note_id_index` so we'll rename it back to its original name.
- add_concurrent_index :commit_user_mentions, [:commit_id_for_type_change, :note_id], name: OLD_INDEX
- remove_concurrent_index_by_name :commit_user_mentions, NEW_INDEX
- end
-end