ruby on rails で作成したアプリをheroくでデプロイしようとしていますが、
We're sorry, but something went wrong.
というエラーになります。
heroku logs で遡ると、このようなログが出てきました。
fatalの部分がエラー原因とはわかるのですが、この場合何を修正していけば良いのかがわかりません。
丸投げのような質問で申し訳ございませんが、どなたか糸口をいただけますとありがたいです。
追記:コントローラー、モデル、ビューを追加しました。
非常に簡単なアプリとなっています。
2020-11-29T06:24:39.025330+00:00 app[web.1]: F, [2020-11-29T06:24:39.025246 #4] FATAL -- : [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 2020-11-29T06:24:39.025384+00:00 app[web.1]: F, [2020-11-29T06:24:39.025314 #4] FATAL -- : [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] ActionView::Template::Error (PG::UndefinedTable: ERROR: relation "posts" does not exist 2020-11-29T06:24:39.025384+00:00 app[web.1]: LINE 1: SELECT "posts".* FROM "posts" 2020-11-29T06:24:39.025385+00:00 app[web.1]: ^ 2020-11-29T06:24:39.025385+00:00 app[web.1]: : SELECT "posts".* FROM "posts"): 2020-11-29T06:24:39.025579+00:00 app[web.1]: F, [2020-11-29T06:24:39.025462 #4] FATAL -- : [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 1: .header 2020-11-29T06:24:39.025579+00:00 app[web.1]: [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 2: - @posts.each do |post| 2020-11-29T06:24:39.025580+00:00 app[web.1]: [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 3: .header_erb 2020-11-29T06:24:39.025580+00:00 app[web.1]: [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 4: .header_erb_date 2020-11-29T06:24:39.025581+00:00 app[web.1]: [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 5: 投稿日時: 2020-11-29T06:24:39.025581+00:00 app[web.1]: F, [2020-11-29T06:24:39.025522 #4] FATAL -- : [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] 2020-11-29T06:24:39.025642+00:00 app[web.1]: F, [2020-11-29T06:24:39.025583 #4] FATAL -- : [7ed3aa3a-9046-49ce-86cc-dc16ea523e3a] app/views/posts/index.html.haml:2:in `_app_views_posts_index_html_haml__144850466977042014_47010702711660'
class PostsController < ApplicationController def index @posts=Post.all end end
class Post < ApplicationRecord end
.header - @posts.each do |post| .header_erb .header_erb_date 投稿日時: =post.created_at .header_erb_name 名前: =post.name .header_erb_name 内容: =post.message