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?
Yes, Its possible to remove the database and migration.
rake db:drop rake db:rollback rails d migration 'migration name' rake db:create rake db:migrate rake db:seed rake db:test:prepare