diff options
author | Beni Cherniavsky-Paskin <cben@redhat.com> | 2018-01-01 17:13:39 +0200 |
---|---|---|
committer | Beni Cherniavsky-Paskin <cben@redhat.com> | 2018-01-01 23:43:55 +0200 |
commit | bbcb1c9e6bec7a517bb4d65e026d6e85d4a04ffb (patch) | |
tree | 2314be6fbe66c7b78d770f42ce21d025ca6fd258 /activerecord/lib | |
parent | 5e4b70461dfd869c7d96b2528e666a9dd8e29183 (diff) | |
download | rails-bbcb1c9e6bec7a517bb4d65e026d6e85d4a04ffb.tar.gz rails-bbcb1c9e6bec7a517bb4d65e026d6e85d4a04ffb.tar.bz2 rails-bbcb1c9e6bec7a517bb4d65e026d6e85d4a04ffb.zip |
Allow type_for_attribute(:symbol)
Closes #31611.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/model_schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/model_schema.rb b/activerecord/lib/active_record/model_schema.rb index fa7537c1a3..60823815fa 100644 --- a/activerecord/lib/active_record/model_schema.rb +++ b/activerecord/lib/active_record/model_schema.rb @@ -361,8 +361,9 @@ module ActiveRecord # it). # # +attr_name+ The name of the attribute to retrieve the type for. Must be - # a string + # a string or a symbol. def type_for_attribute(attr_name, &block) + attr_name = attr_name.to_s if block attribute_types.fetch(attr_name, &block) else |