Flowdock
method

_convert_type_from_options

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: ClassMethods
_convert_type_from_options(type) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/model_schema.rb, line 612
        def _convert_type_from_options(type)
          if immutable_strings_by_default && type.respond_to?(:to_immutable_string)
            type.to_immutable_string
          else
            type
          end
        end
Register or log in to add new notes.