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?
As of Rails 5, the rake commandline tool has been aliased as rails so now
rake
rails
rails db:reset instead of rake db:reset
rails db:reset
rake db:reset
will work just as well