summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/hash_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/hash_index.rb')
-rw-r--r--rubocop/cop/migration/hash_index.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/migration/hash_index.rb b/rubocop/cop/migration/hash_index.rb
index dba202ef0e3..8becef891af 100644
--- a/rubocop/cop/migration/hash_index.rb
+++ b/rubocop/cop/migration/hash_index.rb
@@ -11,7 +11,7 @@ module RuboCop
include MigrationHelpers
MSG = 'hash indexes should be avoided at all costs since they are not ' \
- 'recorded in the PostgreSQL WAL, you should use a btree index instead'.freeze
+ 'recorded in the PostgreSQL WAL, you should use a btree index instead'
NAMES = Set.new([:add_index, :index, :add_concurrent_index]).freeze