Not for me. The 3 most important Rake commands in a Ruby on Rails application are:
rake db:drop rake db:create rake db:migrate
First command drops the database. Second command creates the database. Third command runs all migrations and creates basically the schema. This is incredible useful.
Reblogged this on Ruby On Rails Blog.