Rake accepts multiple task names by releu

757fb0d5ec7560b6f25f5bd98eadc020?size=52

In order to run few tasks you don't need to enter string like

rake db:create && rake db:migrate && rake db:seed

You can write rake db:create db:migrate db:seed.

Also in this case you can use another rake task - db:setup. It's a shortcut for that tasks.

#rake #rails