> Will RAILS_ENV=production rake db:reset get me back to square one,
> where I want to be?
Yes, it should. Running rake -T db (show tasks containing "db" in the
task name) displays this:
rake db:reset Drops and recreates the database from db/schema.rb for
the current environment
db/schema.rb is a Ruby file containing the database schema (and
generated whenever you do a rake db:migrate), so this should give you
a database with a schema, but no data.
Good luck!
- Marius