Is it possible to completely remove the database and all migration records etc from an existing application so I can redesign the database from scratch?
This will get rid of the db:
rake db:drop
And for each migration that you have:
rails d migration migration_name