Is there a rake command to wipe out the data in the database tables?
How do I create a db:seed script to pre-fill data to my tables?
I use rake db:reset which drops and then recreates the database and includes your seeds.rb file. http://guides.rubyonrails.org/migrations.html#resetting-the-database
rake db:reset