aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-06-29 04:37:44 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2012-06-29 04:37:44 -0700
commite39f218b7b38790ec93cdfd93cc2c2d35e5f11a1 (patch)
tree9e0f4388bd988b061ece4036a1cdb442fad0fb7d /activerecord
parent809bdf342638592b0dfd2f888c7c9a4ac093d8cf (diff)
parent8fe458af1a87e9d6be34d166250fecbf32bafc61 (diff)
downloadrails-e39f218b7b38790ec93cdfd93cc2c2d35e5f11a1.tar.gz
rails-e39f218b7b38790ec93cdfd93cc2c2d35e5f11a1.tar.bz2
rails-e39f218b7b38790ec93cdfd93cc2c2d35e5f11a1.zip
Merge pull request #6905 from kennyj/add_changelog_entry_20120629
Added a changelog entry about fda24312d3.
Diffstat (limited to 'activerecord')
-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*