aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorUlisses Almeida + Kassio Borges <anizark+kassioborgesm@gmail.com>2014-12-08 17:43:16 -0200
committerUlisses Almeida + Kassio Borges <anizark+kassioborgesm@gmail.com>2014-12-08 18:13:15 -0200
commit075c81feec87b1e5bfec27ed585c4ab613c2d174 (patch)
tree2fad903219acd89c1437d83c9b7737da3b14292e /activerecord/CHANGELOG.md
parent7daeb98c769a3968a2ccf48ff593909bf1a9d7b0 (diff)
downloadrails-075c81feec87b1e5bfec27ed585c4ab613c2d174.tar.gz
rails-075c81feec87b1e5bfec27ed585c4ab613c2d174.tar.bz2
rails-075c81feec87b1e5bfec27ed585c4ab613c2d174.zip
Add foreign_type option for polymorphic has_one and has_many.
To be possible to use a custom column name to save/read the polymorphic associated type in a has_many or has_one polymorphic association, now users can use the option :foreign_type to inform in what column the associated object type will be saved.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 152cbc751c..a0ff19f273 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Add `foreign_type` option to `has_one` and `has_many` association macros.
+
+ This option enables to define the column name of associated object's type for polymorphic associations.
+
+ *Ulisses Almeida, Kassio Borges*
+
* Remove deprecated behavior allowing nested arrays to be passed as query
values.