Adding pluralize_table_names change to CHANGELOG

This commit is contained in:
Guillermo Iguaran 2011-05-21 22:02:28 -05:00
parent 82857adc56
commit 6e5419a0b1
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
*Rails 3.1.0 (unreleased)*
* AR#pluralize_table_names can be used to singularize/pluralize table name of an individual model:
class User < ActiveRecord::Base
self.pluralize_table_names = false
end
Previously this could only be set globally for all models through ActiveRecord::Base.pluralize_table_names. [Guillermo Iguaran]
* Add block setting of attributes to singular associations:
class User < ActiveRecord::Base