aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/model_schema.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/model_schema.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/model_schema.rb')
-rw-r--r--activerecord/lib/active_record/model_schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/model_schema.rb b/activerecord/lib/active_record/model_schema.rb
index 5718e7fdd0..4ccc5fbb21 100644
--- a/activerecord/lib/active_record/model_schema.rb
+++ b/activerecord/lib/active_record/model_schema.rb
@@ -268,7 +268,7 @@ module ActiveRecord
def attribute_types # :nodoc:
load_schema
- @attribute_types ||= Hash.new(Type::Value.new)
+ @attribute_types ||= Hash.new(Type.default_value)
end
def yaml_encoder # :nodoc: