Rails Migration Cheat Sheet
I've added a simple cheat sheet for Rails Database Migrations to my 'backpack'..
Rails Migration Cheat Sheet
Rails Migration Cheat Sheet
Ruby, Rails and that technothingee currently known as Web 2.0
task :migrate => :environment do
ActiveRecord::Migrator.migrate("db/migrate/", ENV["VERSION"] ? ENV["VERSION"].to_i : nil)
Rake::Task[:db_schema_dump].invoke if ActiveRecord::Base.schema_format == :ruby
end
ENV["VERSION"]which is just accesses the environment.