Method: ActiveRecord::AttributeMethods::Write#write_attribute
- Defined in:
- lib/active_record/attribute_methods/write.rb
#write_attribute(attr_name, value) ⇒ Object
Updates the attribute identified by attr_name with the specified value. Empty strings for Integer and Float columns are turned into nil.
55 56 57 |
# File 'lib/active_record/attribute_methods/write.rb', line 55 def write_attribute(attr_name, value) write_attribute_with_type_cast(attr_name, value, true) end |