diff options
author | kennyj <kennyj@gmail.com> | 2012-06-29 19:18:44 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2012-06-29 19:18:44 +0900 |
commit | 8fe458af1a87e9d6be34d166250fecbf32bafc61 (patch) | |
tree | 9e0f4388bd988b061ece4036a1cdb442fad0fb7d | |
parent | 809bdf342638592b0dfd2f888c7c9a4ac093d8cf (diff) | |
download | rails-8fe458af1a87e9d6be34d166250fecbf32bafc61.tar.gz rails-8fe458af1a87e9d6be34d166250fecbf32bafc61.tar.bz2 rails-8fe458af1a87e9d6be34d166250fecbf32bafc61.zip |
Added an entry about fda24312d3 in the CHANGELOG.
-rw-r--r-- | activerecord/CHANGELOG.md | 15 |
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* |