Commands that work:
- rake db:migrate
- rake db:rollback
- rake db:seed
Commands that don't:
- rake db:drop
- rake db:drop:all
- rake db:migrate:reset
- rake db:purge
If I use db:rollback enough times (or with STEP), my databases drop successfully, but not when I use db:drop / db:drop:all. db:migrate:reset and db:purge leave all the data untouched. Running with trace, watching development.log, system logs and watching DB queries via the DB monitor (no SQL queries appear to run for those commands.) No errors, either.
Running:
- Rails 4.2
- postgres 9.4
- CentOS 7