Is it possible to do a "rake db:migrate" or "rake db:schema:load" without it loading all my models first?
I'm using the acts_as_solr plugin, and it requires that the table exists before the model can be loaded. This is probably a bug in acts_as_solr, but the only workaround I found is to uncomment the acts_as_solr
line in my model, run the migrations, and uncomment it again.