aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2015-09-07 00:15:11 +0930
committerMatthew Draper <matthew@trebex.net>2015-09-07 00:15:11 +0930
commit096252795341518c04e1bb47a32450ade7d7e169 (patch)
tree8e8e37c1e6713628311bb76347542fcf1b2ec04f /activerecord/CHANGELOG.md
parente07b006d9c7b0a57c350d918259176089d6dedd6 (diff)
parentce17e232a12861bce4bd950d7143df3fe0cd1991 (diff)
downloadrails-096252795341518c04e1bb47a32450ade7d7e169.tar.gz
rails-096252795341518c04e1bb47a32450ade7d7e169.tar.bz2
rails-096252795341518c04e1bb47a32450ade7d7e169.zip
Merge pull request #21317 from greysteil/support-postgres-drop-index-concurrently
Support dropping indexes concurrently in Postgres
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 5593e84e9c..ab6a7bde95 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Support dropping indexes concurrently in Postgres.
+
+ See http://www.postgresql.org/docs/9.4/static/sql-dropindex.html for more
+ details.
+
+ *Grey Baker*
+
* Deprecate passing conditions to `ActiveRecord::Relation#delete_all`
and `ActiveRecord::Relation#destroy_all`