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.
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.
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.
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.