lib/rubocop/cop/rails/bulk_change_table.rb in rubocop-rails-2.14.2 vs lib/rubocop/cop/rails/bulk_change_table.rb in rubocop-rails-2.15.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
- # This Cop checks whether alter queries are combinable.
+ # Checks whether alter queries are combinable.
# If combinable queries are detected, it suggests to you
# to use `change_table` with `bulk: true` instead.
# This option causes the migration to generate a single
# ALTER TABLE statement combining multiple column alterations.
#