7

I'm looking for a solution to version database changes in rails. Looking for something very basic.

I mean like a wiki or SO edit versioning.

Craig Walker
  • 49,871
  • 54
  • 152
  • 212
thenengah
  • 42,557
  • 33
  • 113
  • 157
  • Note to readers: This question could perhaps be a little more clear -- it's asking about something for versioning *database content*, i.e. rows in the database, not just the *structure* of the database (e.g. migrations and source control around them). – lindes Feb 21 '11 at 00:01
  • Here is another thread on the subject: http://stackoverflow.com/questions/1697456/versioning-of-models-in-ruby-on-rails Two screencasts: http://railscasts.com/episodes/177-model-versioning http://railscasts.com/episodes/255-undo-with-paper-trail Paper trail looks the best from my research. – Moemars Oct 15 '12 at 21:33

1 Answers1

9

Acts as versioned will version your models automagically.

The Ruby Toolbox lists solutions for things like this ordered by popularity. There is a category on ActiveRecord versioning you might want to check out.

tfwright
  • 2,844
  • 21
  • 37
Sam Coles
  • 4,003
  • 24
  • 19