Skip to content

Instantly share code, notes, and snippets.

@lamdor
Created August 17, 2009 19:20
Show Gist options
  • Select an option

  • Save lamdor/169315 to your computer and use it in GitHub Desktop.

Select an option

Save lamdor/169315 to your computer and use it in GitHub Desktop.
namespace :db do
namespace :migrate do
desc "migrate the other database"
task :other_db => :environment do
ActiveRecord::Base.establish_connection("...")
ActiveRecord::Migrator.migrate("db/other_db_migrate")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment