aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-06-29 19:18:44 +0900
committerkennyj <kennyj@gmail.com>2012-06-29 19:18:44 +0900
commit8fe458af1a87e9d6be34d166250fecbf32bafc61 (patch)
tree9e0f4388bd988b061ece4036a1cdb442fad0fb7d /activerecord/CHANGELOG.md
parent809bdf342638592b0dfd2f888c7c9a4ac093d8cf (diff)
downloadrails-8fe458af1a87e9d6be34d166250fecbf32bafc61.tar.gz
rails-8fe458af1a87e9d6be34d166250fecbf32bafc61.tar.bz2
rails-8fe458af1a87e9d6be34d166250fecbf32bafc61.zip
Added an entry about fda24312d3 in the CHANGELOG.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 1822ba8e0e..7a3dfd34dc 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,20 @@
## Rails 4.0.0 (unreleased) ##
+* Add `collate` and `ctype` support to PostgreSQL. These are available for PostgreSQL 8.4 or later.
+ Example:
+
+ development:
+ adapter: postgresql
+ host: localhost
+ database: rails_development
+ username: foo
+ password: bar
+ encoding: UTF8
+ collate: ja_JP.UTF8
+ ctype: ja_JP.UTF8
+
+ *kennyj*
+
* `FinderMethods#exists?` now returns `false` with the `false` argument.
*Egor Lynko*