diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-06-29 04:37:44 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-06-29 04:37:44 -0700 |
commit | e39f218b7b38790ec93cdfd93cc2c2d35e5f11a1 (patch) | |
tree | 9e0f4388bd988b061ece4036a1cdb442fad0fb7d /activerecord | |
parent | 809bdf342638592b0dfd2f888c7c9a4ac093d8cf (diff) | |
parent | 8fe458af1a87e9d6be34d166250fecbf32bafc61 (diff) | |
download | rails-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.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* |