I can do Post.delete_all to delete all my posts, but what if I want to delete all posts, comments, blogs, etc.?
Post.delete_all
How do I iterate over all my models and
You can have finer control with:
rake db:drop:all
And then create the database without running the migrations,
rake db:create:all
Then run all your migrations,
rake db:migrate
You can also do:
mysqladmin drop databasename