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 'rubocop/cop/migration/remove_index.rb')
-rw-r--r--rubocop/cop/migration/remove_index.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/migration/remove_index.rb b/rubocop/cop/migration/remove_index.rb
index ca5d4af1520..26d271207dc 100644
--- a/rubocop/cop/migration/remove_index.rb
+++ b/rubocop/cop/migration/remove_index.rb
@@ -6,7 +6,7 @@ module RuboCop
module Cop
module Migration
# Cop that checks if indexes are removed in a concurrent manner.
- class RemoveIndex < RuboCop::Cop::Cop
+ class RemoveIndex < RuboCop::Cop::Base
include MigrationHelpers
MSG = '`remove_index` requires downtime, use `remove_concurrent_index` instead'
@@ -15,7 +15,7 @@ module RuboCop
return unless in_migration?(node)
node.each_descendant(:send) do |send_node|
- add_offense(send_node, location: :selector) if method_name(send_node) == :remove_index
+ add_offense(send_node.loc.selector) if method_name(send_node) == :remove_index
end
end