модуль ActiveRecord::AttributeMethods::Write
Константы
- WriterMethodCache
Открытые методы экземпляров
# 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
Обновляет атрибут, идентифицируемый attr_name заданным value. Пустые строки для столбцов fixnum и float преобразуются в 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.