summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/add_column_with_default.rb
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/add_column_with_default.rb')
-rw-r--r--rubocop/cop/migration/add_column_with_default.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/migration/add_column_with_default.rb b/rubocop/cop/migration/add_column_with_default.rb
index 747d7caf1ef..54a920d4b49 100644
--- a/rubocop/cop/migration/add_column_with_default.rb
+++ b/rubocop/cop/migration/add_column_with_default.rb
@@ -9,7 +9,7 @@ module RuboCop
include MigrationHelpers
MSG = '`add_column_with_default` is not reversible so you must manually define ' \
- 'the `up` and `down` methods in your migration class, using `remove_column` in `down`'
+ 'the `up` and `down` methods in your migration class, using `remove_column` in `down`'.freeze
def on_send(node)
return unless in_migration?(node)