Rails の We’re sorry, but something went wrong. というエラーの対処

rails で

We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.

というエラーが出る場合の対処。

 

まずは log/production.log でエラーの内容を確認。

 

すると、productionモードでテーブルが作られていないもよう。

rake db:create RAILS_ENV=production
rake db:migrate RAILS_ENV=production

でテーブルを作成。