Displaying 1 result from an estimated 1 matches for "occurred_at".
2006 Mar 02
6
Newb question about facade columns
...he controller''s update method)
fails silently - the attributes written out are the same before and after:
puts "the attributes currently are:"
@event.attributes.each do |key, value|
puts "#{key} = #{value}"
end
@event.attributes.store("occurred_at", nil)
puts "after attempting to add an attribute, the attributes are:"
@event.attributes.each do |key, value|
puts "#{key} = #{value}"
end
Any suggestions? Has anyone used a facade column on a Date? Since the
problem occurs in the *controller* u...