aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorVlad Jebelev <vlad@jebelev.com>2011-11-04 15:45:24 -0500
committerVlad Jebelev <vlad@jebelev.com>2011-11-04 15:45:24 -0500
commit69dcd45aea770ca90bb3e1f8ce4e944dfb37e766 (patch)
tree138e407191916e82fb9a941c6b03b1db216ac5bf /activerecord/CHANGELOG.md
parentcb06727b6cb7310808f5b9ce1bf254055806ba80 (diff)
downloadrails-69dcd45aea770ca90bb3e1f8ce4e944dfb37e766.tar.gz
rails-69dcd45aea770ca90bb3e1f8ce4e944dfb37e766.tar.bz2
rails-69dcd45aea770ca90bb3e1f8ce4e944dfb37e766.zip
AR changes to support creating ordered (asc, desc) indexes
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 2b46a6a869..426f6b48b3 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.0 (unreleased) ##
+* Support index sort order in sqlite, mysql and postgres adapters. *Vlad Jebelev*
+
* Allow the :class_name option for associations to take a symbol (:Client) in addition to
a string ('Client').