diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-17 21:09:06 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-17 21:09:06 +0000 |
commit | 3e308768fd9306a49bb0149ca3636e8e8285485d (patch) | |
tree | 814b19f607218d670b0cfeccd5963d6320aec3d5 /rubocop | |
parent | c0ef148ef349f0d13331638ab90f5d9e9d2175ba (diff) | |
download | gitlab-ce-3e308768fd9306a49bb0149ca3636e8e8285485d.tar.gz |
Add latest changes from gitlab-org/gitlab@master
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 |