aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2015-12-18 14:17:50 +1030
committerMatthew Draper <matthew@trebex.net>2015-12-18 14:17:50 +1030
commitda6713fd0361f29a1e6aa80ce40238ae717535f5 (patch)
treea3976273fcb096a3e96fba030180a10133a02351 /activerecord/CHANGELOG.md
parentc316ce9ba4d67045029c8463dc7e04ea04e9ddad (diff)
parentd927f35bf04a93b5fd7aaa5ab8081f6bad070746 (diff)
downloadrails-da6713fd0361f29a1e6aa80ce40238ae717535f5.tar.gz
rails-da6713fd0361f29a1e6aa80ce40238ae717535f5.tar.bz2
rails-da6713fd0361f29a1e6aa80ce40238ae717535f5.zip
Merge pull request #22623 from greysteil/support-passing-schema-name-to-indexes
Support passing the schema name prefix to `conenction.indexes`
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6f24746ccc..ecdb7e204a 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Support passing the schema name as a prefix to table name in
+ `ConnectionAdapters::SchemaStatements#indexes`. Previously the prefix would
+ be considered a full part of the index name, and only the schema in the
+ current search path would be considered.
+
+ *Grey Baker*
+
* Ignore index name in `index_exists?` and `remove_index` when not passed a
name to check for.