lib/rubocop/cop/rails/not_null_column.rb in rubocop-rails-2.14.2 vs lib/rubocop/cop/rails/not_null_column.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 for add_column call with NOT NULL constraint
+ # Checks for add_column call with NOT NULL constraint
# in migration file.
#
# @example
# # bad
# add_column :users, :name, :string, null: false