aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-06-15 09:12:55 +0200
committerYves Senn <yves.senn@gmail.com>2015-06-15 09:42:26 +0200
commit0e928de345a99a6173efbaa5c87e472dd86e4110 (patch)
tree26077c560e43ff7b2dc16caa4963e83119caefde /activerecord/CHANGELOG.md
parent863fcfa79ae625b891bbd4fbc86a7a1f9553dddd (diff)
downloadrails-0e928de345a99a6173efbaa5c87e472dd86e4110.tar.gz
rails-0e928de345a99a6173efbaa5c87e472dd86e4110.tar.bz2
rails-0e928de345a99a6173efbaa5c87e472dd86e4110.zip
make `remove_index :table, :column` reversible.
This used to raise a `IrreversibleMigration` error (since #10437). However since `remove_index :table, :column` is probably the most basic use-case we should make it reversible again. Conflicts: activerecord/CHANGELOG.md
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a7cd6d4d54..d570f8e965 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Make `remove_index :table, :column` reversible.
+
+ *Yves Senn*
+
* Fixed an error which would occur in dirty checking when calling
`update_attributes` from a getter.