I have around 15 more or less complex models. Of those I would like to track the changes. What's the simplest way? After-save/-update triggers?

Performance is important but if there is a way with low complexity but decreasing performance, I'll do it.

By the way: I do not want to use stored procedures. (Though I might, if there is a really simple way to do so...)

Thanks, Philip

link|improve this question

68% accept rate
feedback

2 Answers

There is verstal_versions, which seems to do what you want to do.

It adds versionning over all the models you specify. See, for example :

class User < ActiveRecord::Base
  versioned

  validates_presence_of :name
end

Then you can use your model's versions like this :

>> u = User.create(:name => "Steve Richert")
=> #<User first_name: "Steve", last_name: "Richert">
>> u.version
=> 1
>> u.update_attribute(:name, "Stephen Richert")
=> true
>> u.name
=> "Stephen Richert"
>> u.version
=> 2
>> u.revert_to(10.seconds.ago)
=> 1
>> u.name
=> "Steve Richert"
link|improve this answer
Definitely interesting... Though I fear complexity that might affect performance and maintenance... – Philip Nov 7 '11 at 20:33
Well, I've seen vestal_versions in large-scale applications, it's quite fast and very usable. – Damien MATHIEU Nov 9 '11 at 10:17
feedback

You might also want to look at Dirty objects provided by ActiveRecord out of the box. This gives you the ability to work with objects while they're in the process of being saved so that you can log the changes to a separate table.

link|improve this answer
Yeah but this is AR 3+ – Philip Nov 8 '11 at 9:21
Dirty objects exist in 2.x as well. See this link. My understanding is they work pretty much the same as they do in AR 3+. – Koby Nov 8 '11 at 15:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.