実現したいこと
bin/rails s を実行したい
エラーメッセージ
SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
このエラーメッセージはbin/rails s
を実行した際には出てきませんが、localhost:3000にアクセスしたときに出てきます。
試したこと
エラーメッセージで検索
補足
rails 6.0.0を使用しています
当該の行はエラーメッセージではありません。他にどんなメッセージが出ていますか?
=> Booting Puma
=> Rails 6.0.0 application starting in development
=> Run `rails server --help` for more startup options
Puma starting in single mode...
* Version 3.12.1 (ruby 2.6.4-p104), codename: Llamas in Pajamas
* Min threads: 5, max threads: 5
* Environment: development
* Listening on tcp://localhost:3000
Use Ctrl-C to stop
Started GET "/" for ::1 at 2019-10-09 16:55:21 +0900
(0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
Processing by TasksController#index as HTML
Rendering tasks/index.html.slim within layouts/application
Rendered tasks/index.html.slim within layouts/application (Duration: 18.6ms | Allocations: 9317)
Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.0ms | Allocations: 12332)
このようなものが出ています
回答2件
あなたの回答
tips
プレビュー