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_column.rb')
-rw-r--r--rubocop/cop/migration/remove_column.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/migration/remove_column.rb b/rubocop/cop/migration/remove_column.rb
index 6a171ac948f..e8477a211e4 100644
--- a/rubocop/cop/migration/remove_column.rb
+++ b/rubocop/cop/migration/remove_column.rb
@@ -7,7 +7,7 @@ module RuboCop
module Migration
# Cop that checks if remove_column is used in a regular (not
# post-deployment) migration.
- class RemoveColumn < RuboCop::Cop::Cop
+ class RemoveColumn < RuboCop::Cop::Base
include MigrationHelpers
MSG = '`remove_column` must only be used in post-deployment migrations'
@@ -22,7 +22,7 @@ module RuboCop
send_method = send_node.children[1]
if send_method == :remove_column
- add_offense(send_node, location: :selector)
+ add_offense(send_node.loc.selector)
end
end
end