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.

【Rails】save!を実行したとき、ActiveRecord::RecordInvalid (Validation failed: User must exist):と表示されたときの対処法

Last updated at Posted at 2021-05-19

症状

以下のsaveメソッドを実行した際に、以下のエラーメッセージが表示されました。
ターミナル
ActiveRecord::RecordInvalid (Validation failed: User must exist):

翻訳すると「(検証に失敗しました:ユーザーが存在する必要があります)」になりました。
推察するに、1対nの関係性のあるHogeとUserを設定しており、Hogeを登録するためのuser_idを外部キーとして注入できていなかったようです。

解決策

user.idをHogeに注入することで解決しました。
#若干強引ですが、user.idをそのまま代入します
Hoge.user_id = user.id

if Hoge.save!
  logger.debug(SUCCESS)
else
  logger.debug(FAIL)
end

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?