aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-26 11:55:12 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-26 11:55:12 -0700
commit17077639c2805d2f40b579215c2e1fa7b9951e5c (patch)
treead6ceae8eb29012d016f059df5aaa4e63b934970 /activerecord/CHANGELOG.md
parentb6e5971e53746a79abc92ce9acea85ca14fab0b3 (diff)
parent437961b558363df0f489fe976f89258c442dcb05 (diff)
downloadrails-17077639c2805d2f40b579215c2e1fa7b9951e5c.tar.gz
rails-17077639c2805d2f40b579215c2e1fa7b9951e5c.tar.bz2
rails-17077639c2805d2f40b579215c2e1fa7b9951e5c.zip
Merge pull request #9928 from vipulnsward/fix_rename_auto_increment_mysql
respect auto_increment in rename_column for mysql
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a37147af2b..94d86f6550 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* `rename_column` preserves auto_increment in mysql migrations.
+ Fixes #3493.
+
+ *Vipul A M*
+
* PostgreSQL geometric type point is supported by ActiveRecord. Fixes #7324.
*Martin Schuerrer*
@@ -36,7 +41,7 @@
*Ian Young*
-* If ``:inverse_of` is true on an association, then when one calls `find()` on
+* If `:inverse_of` is true on an association, then when one calls `find()` on
the association, Active Record will first look through the in-memory objects
in the association for a particular id. Then, it will go to the DB if it
is not found. This is accomplished by calling `find_by_scan` in