W3cubDocs

/Ruby on Rails 4.2

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 59
def raw_write_attribute(attr_name, value)
  write_attribute_with_type_cast(attr_name, value, false)
end
write_attribute(attr_name, value) Show source

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

# 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

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