aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-01-03 19:25:14 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-01-03 19:25:14 -0500
commitfdc219e0f857c372748296eae9cc5828ffb2c2c3 (patch)
treec3bc38dac45be392534c8b3b4f8c050f2ecdb460 /activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
parent0df8649f58f27b2b2044651516e935cd10a163f3 (diff)
parent457e6c77d421a36b763441a2c262f580114a20d5 (diff)
downloadrails-fdc219e0f857c372748296eae9cc5828ffb2c2c3.tar.gz
rails-fdc219e0f857c372748296eae9cc5828ffb2c2c3.tar.bz2
rails-fdc219e0f857c372748296eae9cc5828ffb2c2c3.zip
Merge pull request #26689 from kamipo/deprecate_passing_name_to_indexes
Deprecate passing `name` to `indexes` like `tables`
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
index 85836fc575..bfda113e40 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
@@ -166,7 +166,13 @@ module ActiveRecord
end
# Returns an array of indexes for the given table.
- def indexes(table_name, name = nil)
+ def indexes(table_name, name = nil) # :nodoc:
+ if name
+ ActiveSupport::Deprecation.warn(<<-MSG.squish)
+ Passing name to #indexes is deprecated without replacement.
+ MSG
+ end
+
table = Utils.extract_schema_qualified_name(table_name.to_s)
result = query(<<-SQL, "SCHEMA")