A neat thing I learned while hacking on legacy schema support is that you can easily test various migration/schema methods in the Rails console.

Just type this in the Rails console:

ActiveRecord::Schema.define { create_table :posts }

And the table will be created right there and then. Abuse this at your own risk. ;)