W3cubDocs

/Ruby on Rails 6.0

module ActiveRecord::AttributeMethods::Write

Public Instance Methods

write_attribute(attr_name, value) Show source
# File activerecord/lib/active_record/attribute_methods/write.rb, line 32
def write_attribute(attr_name, value)
  name = attr_name.to_s
  name = self.class.attribute_aliases[name] || name

  name = @primary_key if name == "id" && @primary_key
  _write_attribute(name, value)
end

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

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