0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

その2「Rails初心者」が5回連続で発生したエラーをなんとか切り抜けた話。「ActiveRecord::StatementInvalid in IncomeValues#index」

Last updated at Posted at 2020-07-31

前回の「その1」の続きです

前回の記事はこちら☞https://qiita.com/Shota_U/items/1f91709704476618aa0d

2つ目のエラーは

image.png

ということで、

「ActiveRecord::StatementInvalid in IncomeValues#index」

「データベースがおかしいよ」

ってことみたいです。

色々調べてみましたが、全く解決できませんでした。。
そこでQiitaで質問しました。

すると、ありがたいことに回答をいくつかいただきました。

どうやら、controllerの

IncomeValue.order("year_month asc")

が怪しいみたく、orderの指定の仕方がおかしいようです。

そこで、

IncomeValue.order(year_month: :asc)

としたところ、
このエラーがなくなりました!

君には苦戦したよ。。。って感じで
エラーが解消されたのはよいものの、、、

また次に
「NoMethodError in IncomeValues#index」
がでてきてしまったのです。。。

その3に続く👇
https://qiita.com/Shota_U/items/a589a080815032a24092

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?