ruby-on-railsruby-on-rails-3rake

Faster way to write this rake command - rake db:drop db:create db:migrate db:seed


Every time I have changes to my schema or new migration files, I run this command:

rake db:drop db:create db:migrate db:seed

Is there a prebuilt equivalent way to do this?

I thought from what I've read that rake db:reset doesn't quite do the same thing, but i could be wrong.


Solution

  • you could create a custom rake task for this - lib/tasks/db_rebuild_all.rake

    namespace :db_tasks do
      desc "Rebuild database"
      task :rebuild, [] => :environment do
        raise "Not allowed to run on production" if Rails.env.production?
    
        Rake::Task['db:drop'].execute
        Rake::Task['db:create'].execute
        Rake::Task['db:migrate'].execute
        Rake::Task['db:seed'].execute
      end
    end
    

    then just run bundle exec rake db_tasks:rebuild