aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/value.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-05-20 14:36:18 -0700
committerSean Griffin <sean@thoughtbot.com>2014-05-20 14:36:18 -0700
commit32218c10fa6072616ea01380bc33f10a89e157ba (patch)
tree32be0ca8a154adf271b13dd11d804f475a81b251 /activerecord/lib/active_record/connection_adapters/type/value.rb
parent52b558695d5a1b33ff21516cbc71d1ae1dee4632 (diff)
downloadrails-32218c10fa6072616ea01380bc33f10a89e157ba.tar.gz
rails-32218c10fa6072616ea01380bc33f10a89e157ba.tar.bz2
rails-32218c10fa6072616ea01380bc33f10a89e157ba.zip
Delegate `type_cast_for_write` to injected type object
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/type/value.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/value.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/value.rb b/activerecord/lib/active_record/connection_adapters/type/value.rb
index 506f402fef..ba8f360eb9 100644
--- a/activerecord/lib/active_record/connection_adapters/type/value.rb
+++ b/activerecord/lib/active_record/connection_adapters/type/value.rb
@@ -8,6 +8,10 @@ module ActiveRecord
cast_value(value) unless value.nil?
end
+ def type_cast_for_write(value)
+ value
+ end
+
def text?
false
end