File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 5252* ` ActiveRecord::Relation#inspect ` now makes it clear that you are
5353 dealing with a ` Relation ` object rather than an array:.
5454
55- User.where(: age => 30).inspect
56- # => <ActiveRecord::Relation [ #<User ...>, #<User ...>, ...] >
55+ User.where(:age => 30).inspect
56+ # => <ActiveRecord::Relation [#<User ...>, #<User ...>, ...]>
5757
58- User.where(: age => 30).to_a.inspect
59- # => [ #<User ...>, #<User ...>]
58+ User.where(:age => 30).to_a.inspect
59+ # => [#<User ...>, #<User ...>]
6060
6161 The number of records displayed will be limited to 10.
6262
6565* Add ` collation ` and ` ctype ` support to PostgreSQL. These are available for PostgreSQL 8.4 or later.
6666 Example:
6767
68- development:
69- adapter: postgresql
70- host: localhost
71- database: rails_development
72- username: foo
73- password: bar
74- encoding: UTF8
75- collation: ja_JP.UTF8
76- ctype: ja_JP.UTF8
68+ development:
69+ adapter: postgresql
70+ host: localhost
71+ database: rails_development
72+ username: foo
73+ password: bar
74+ encoding: UTF8
75+ collation: ja_JP.UTF8
76+ ctype: ja_JP.UTF8
7777
7878 * kennyj*
7979
You can’t perform that action at this time.
0 commit comments