aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-08-31 10:06:43 -0400
committerGitHub <noreply@github.com>2016-08-31 10:06:43 -0400
commitc14c0e3cf0f4fd828411b42602a6e7a71e0d59c7 (patch)
tree1038264f2d2f490460f59df0843d13bf02319786 /activerecord/lib/active_record/type.rb
parentcaa178c178468f7adcc5f4c597280e6362d9e175 (diff)
parent402852fc6d3222a283b65d407ffec3161946db71 (diff)
downloadrails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.tar.gz
rails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.tar.bz2
rails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.zip
Merge pull request #26282 from kamipo/add_type_default_value
Add `Type.default_value` and use it everywhere for internal
Diffstat (limited to 'activerecord/lib/active_record/type.rb')
-rw-r--r--activerecord/lib/active_record/type.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/type.rb b/activerecord/lib/active_record/type.rb
index 1b2fc1b034..0b48d2186a 100644
--- a/activerecord/lib/active_record/type.rb
+++ b/activerecord/lib/active_record/type.rb
@@ -37,6 +37,10 @@ module ActiveRecord
registry.lookup(*args, adapter: adapter, **kwargs)
end
+ def default_value # :nodoc:
+ @default_value ||= Value.new
+ end
+
private
def current_adapter_name