Flowdock
create_time_zone_conversion_attribute?(name, cast_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/attribute_methods/time_zone_conversion.rb, line 61
        def create_time_zone_conversion_attribute?(name, cast_type)
          time_zone_aware_attributes &&
            !self.skip_time_zone_conversion_for_attributes.include?(name.to_sym) &&
            (:datetime == cast_type.type)
        end
Register or log in to add new notes.