views:

65

answers:

2

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.

+2  A: 

Rails DB Migrations are a core Rails feature; do they not serve your purpose?

Note that you can use them for both schema and data changes, though this is discouraged.

Craig Walker
I guess I just don't know the terminology. I mean like a wiki style that trackers versions of edits.
Sam
Ahh yes... very different. @Sam C's answer looks like the right idea.
Craig Walker
+4  A: 

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.

Sam C