aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2014-11-27 10:06:49 +0900
committerRyuta Kamizono <kamipo@gmail.com>2014-12-12 00:35:48 +0900
commitb61a93b44e11046cc28605a8b4d2d17fe89927fd (patch)
tree7d1637c5fecfdca42f2edd32d1aa154f5aa8b04b /activerecord/CHANGELOG.md
parent6961afefd2f163f30b9ae3aacb74b290287f9a80 (diff)
downloadrails-b61a93b44e11046cc28605a8b4d2d17fe89927fd.tar.gz
rails-b61a93b44e11046cc28605a8b4d2d17fe89927fd.tar.bz2
rails-b61a93b44e11046cc28605a8b4d2d17fe89927fd.zip
Fix undesirable RangeError by Type::Integer. Add Type::UnsignedInteger.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a0ff19f273..72b770e2d5 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix undesirable RangeError by Type::Integer. Add Type::UnsignedInteger.
+
+ *Ryuta Kamizono*
+
* 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.