Created
October 12, 2010 18:51
-
-
Save scharfie/622705 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :db do | |
task :rebuild => ['db:drop', 'db:create', 'db:migrate'] | |
namespace :test do | |
task :rebuild => :environment do | |
RAILS_ENV = 'test' | |
ActiveRecord::Base.establish_connection(:test) | |
Rake::Task['db:rebuild'].invoke | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment