【備忘録】【Rails6】「We’re sorry, but something went wrong.」「The page you were looking for doesn’t exist.」

  • URLをコピーしました!

★環境
 Ruby:3.0.3
 Rails:6.1.4.1

railsでウェブページを作ると以下のようなエラーになる場合がある。

開発環境では問題なかったのに、本番環境に以降すると表示されるケースもある。

We’re sorry, but something went wrong.

If you are the application owner check the logs for more information.

railsのエラー

The page you were looking for doesn’t exist.

You may have mistyped the address or the page may have moved.

If you are the application owner check the logs for more information.

railsのエラー

理由は簡単。

データベースが作成されていない、もしくは更新されていないケースが大半。

なので、データベースのマイグレーションをすればOK!

※データベースを作成する場合
rails db:create 
 ※もしくは「rake db:create」
※データベースのマイグレーション
rails db:migrate
 ※もしくは「rake db:migrate」
よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!
目次