Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/add_columns_to_wide_tables.rb')
-rw-r--r--rubocop/cop/migration/add_columns_to_wide_tables.rb4
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