From 44dc4f6645e12ddd5cf927bca0675a5b44d55cbd Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Wed, 5 Oct 2016 22:04:33 +0530 Subject: Check whether the current attribute being write is aliased or not before writing - If aliased, then use the aliased attribute name. --- activerecord/lib/active_record/attribute_methods/write.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/attribute_methods/write.rb b/activerecord/lib/active_record/attribute_methods/write.rb index f65c297e01..0022d526a4 100644 --- a/activerecord/lib/active_record/attribute_methods/write.rb +++ b/activerecord/lib/active_record/attribute_methods/write.rb @@ -29,7 +29,13 @@ module ActiveRecord # specified +value+. Empty strings for Integer and Float columns are # turned into +nil+. def write_attribute(attr_name, value) - write_attribute_with_type_cast(attr_name, value, true) + name = if self.class.attribute_alias?(attr_name) + self.class.attribute_alias(attr_name).to_s + else + attr_name.to_s + end + + write_attribute_with_type_cast(name, value, true) end def raw_write_attribute(attr_name, value) # :nodoc: -- cgit v1.2.3