aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2011-05-21 22:02:28 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2011-05-21 22:16:34 -0500
commit6e5419a0b161a8e62bc347cda03c4ee142b83d20 (patch)
tree6aafe0572f7caf8cbd929c9080ad744cc5e1d504 /activerecord
parent82857adc56efd16d22821971fff4c5e24a3c5b55 (diff)
downloadrails-6e5419a0b161a8e62bc347cda03c4ee142b83d20.tar.gz
rails-6e5419a0b161a8e62bc347cda03c4ee142b83d20.tar.bz2
rails-6e5419a0b161a8e62bc347cda03c4ee142b83d20.zip
Adding pluralize_table_names change to CHANGELOG
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 502a7e43de..b05d3970c7 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -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