My rails application works fine when I run rake db:migrate but the problem occurs when I try to start the rails console.
rake db:migrate
2.0.0p247 :003 > User =
To restore the behavior of ActiveRecord models displaying their column information immediately after the console has loaded, here is one workaround:
# config/application.rb console do ActiveRecord::Base.connection end