aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2012-12-15 22:42:22 +0100
committerYves Senn <yves.senn@garaio.com>2012-12-19 12:24:35 +0100
commit9f69d42860a56c585271484f49445f1b43dac357 (patch)
tree6ad4736a3358305efff45b821e5afa965bb9d546 /activerecord/CHANGELOG.md
parentdf048b574b5ab5a449a3b1dfc50dbf3baa18869e (diff)
downloadrails-9f69d42860a56c585271484f49445f1b43dac357.tar.gz
rails-9f69d42860a56c585271484f49445f1b43dac357.tar.bz2
rails-9f69d42860a56c585271484f49445f1b43dac357.zip
Backport #8522, Keep index names when using with sqlite3
Conflicts: activerecord/CHANGELOG.md activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb activerecord/test/cases/migration/rename_column_test.rb
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 0b22939884..c39d7fe00c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,11 @@
## Rails 3.2.10 (unreleased)
+* Keep index names when using `alter_table` with sqlite3.
+ Fix #3489
+ Backport #8522
+
+ *Yves Senn*
+
* Recognize migrations placed in directories containing numbers and 'rb'.
Fix #8492
Backport of #8500