Hi! Is there any standalone alternative to activerecord-like migrations. Something like a script that is able to track current schema version and apply outstanding migrations. Basically, these migration files could be just a plain SQL files, something like:
[timestamp]_create_users.sql reverse_[timestamp]_create_users.sql
Language of implementation isn't very important — it could be anything that is usually installed/pre-installed on *nix systems.
I tried to find something out — but failed. I can certainly develop my own in an hour or two, but I am just curious — may be something nice is out there already.