Topic: Rake db:migrates doesn't migrate test database
I create a new migration to add/change a field I forgot. Then I run 'rake db:migrate'. My development database get the field added just fine, but the test database does not. Therefore, when I run the 'rake test' I get mucho errors.
I though 'rake db:migrate' also updated the test database? Or 'rake test' was suppoed to reload the complete schema.rb each time it loads the fixutres? It doesn't seem to be doing either.
Why?
PS- I know a solution... 'rake db:test:prepare', but I thought rake was supposed to do this automatically for me.