Ruby rake db:seed aborting due to ** Execute db:abort_if_pending_migrations, but I think all the migrations were successful.
Here's the last portion of the output when I run rake db:migrate --trace
** Invoke db:load_config (first_time)
** Execute db:load_config
** Execute db:migrate
** Invoke db:_dump (first_time)
** Execute db:_dump
** Invoke db:schema:dump (first_time)
** Invoke environment
** Invoke db:load_config
** Execute db:schema:dump
I assume that mean it was successful (I didn't see any aborts)?
Then when I run rake db:seed --trace I get (in summary):
** Invoke db:seed (first_time)
** Execute db:seed
** Invoke db:abort_if_pending_migrations (first_time)
** Invoke environment (first_time)
** Execute environment
loading plugins
(the plugins load with no errors) then:
** Execute db:abort_if_pending_migrations
does this mean the migration and the seed worked properly or not? Thank you for your time & input!