Thanks for any help/advice!
Ed
If my legacy DB has a datetime-equivalent column named
"last_modified", I ought to be able to do this in my model:
alias_attribute :updated_at, :last_modified
Ed
So, back to square one.
Ed
P.S. The work-around that does work for this is to define a
before_save method in the model that updates the legacy column. I was
hoping for a something that would hook Rails' existing automatic
timestamping functionality. :-[