module ActiveRecord::AttributeMethods::Write

Constants

WriterMethodCache

Public Instance Methods

raw_write_attribute(attr_name, value) Show source
# File activerecord/lib/active_record/attribute_methods/write.rb, line 61
def raw_write_attribute(attr_name, value)
  write_attribute_with_type_cast(attr_name, value, :raw_type_cast_attribute_for_write)
end
write_attribute(attr_name, value) Show source

Updates the attribute identified by attr_name with the specified value. Empty strings for fixnum and float columns are turned into nil.

# File activerecord/lib/active_record/attribute_methods/write.rb, line 57
def write_attribute(attr_name, value)
  write_attribute_with_type_cast(attr_name, value, :type_cast_attribute_for_write)
end

© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.