diff options
Diffstat (limited to 'rubocop')
-rw-r--r-- | rubocop/cop/migration/add_columns_to_wide_tables.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/migration/add_columns_to_wide_tables.rb b/rubocop/cop/migration/add_columns_to_wide_tables.rb index 2880783dc3e..41056379515 100644 --- a/rubocop/cop/migration/add_columns_to_wide_tables.rb +++ b/rubocop/cop/migration/add_columns_to_wide_tables.rb @@ -9,8 +9,8 @@ module RuboCop class AddColumnsToWideTables < RuboCop::Cop::Cop include MigrationHelpers - MSG = '`%s` is a wide table with several columns, addig more should be avoided unless absolutely necessary.' \ - ' Consider storing the column in a different table or creating a new one.'.freeze + MSG = '`%s` is a wide table with several columns, adding more should be avoided unless absolutely necessary.' \ + ' Consider storing the column in a different table or creating a new one.' BLACKLISTED_METHODS = %i[ add_column |