summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/add_column_with_default.rb
blob: 36603e09263a0a12496ee39a2a3c9868e6f175b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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