1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #6905 from kennyj/add_changelog_entry_20120629

Added a changelog entry about fda24312d3.
This commit is contained in:
Santiago Pastorino 2012-06-29 04:37:44 -07:00
commit e39f218b7b

View file

@ -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*