debian-mirror-gitlab/rubocop/cop/migration/add_column_with_default.rb
2022-10-11 01:57:18 +05:30

23 lines
518 B
Ruby

# frozen_string_literal: true
require_relative '../../migration_helpers'
module RuboCop
module Cop
module Migration
class AddColumnWithDefault < RuboCop::Cop::Base
include MigrationHelpers
MSG = '`add_column_with_default` is deprecated, use `add_column` instead'
def on_send(node)
return unless in_migration?(node)
name = node.children[1]
add_offense(node.loc.selector) if name == :add_column_with_default
end
end
end
end
end