public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
insoshi / lib / tasks / migrate_both.rake
100644 9 lines (9 sloc) 0.202 kb
1
2
3
4
5
6
7
8
9
namespace :db do
  namespace :migrate do
    desc "Migrate and prepare test database"
    task :both do
      Rake::Task["db:migrate"].invoke
      Rake::Task["db:test:prepare"].invoke
    end
  end
end