is it possible to modify magic field updated_at so it will update only
when ceratin columns are changed?
if not, I guess I have to do it on my own. In that case, how do I
tell if a field has changed in the, say, before_save callback?
I guess I can do something like this
def foo=(val)
if self.foo!=val
super
self.foo_changed = true
end
end
will that do?