instance method
write_attribute
Ruby on Rails 4.2.9
Since v3.0.20Signature
write_attribute(attr_name, value)
Updates the attribute identified by attr_name with the specified value. Empty strings for Integer and Float columns are turned into nil.
Parameters
-
attr_namereq -
valuereq
Source
# File activerecord/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
Defined in activerecord/lib/active_record/attribute_methods/write.rb line 55
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::AttributeMethods::Write