Switchtower and ActiveRecord Migrations
In my spare time I’ve been playing with Rails for a while now. This week I tried using SwitchTower and ActiveRecord Migrations for the first time, and I’m very impressed. Migrations provide a way for versioning and applying database changes. A simple call to script/generate migration MigrationName generates a new blank migration file with the appropriate version number. The file contains two methods up and down, which up- and down-grade (for rollback purposes) the database respectively....