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?

Rails + Enumerize – ActiveRecordで データベースの値が nil が返ってくる

Posted at

問題

たとえばこんなクラスがある時

class Example < ApplicationRecord
  extend Enumerize

  enumerize :name, in: %i[alice bob carol]
end

データベースの値が enumerize の定義に対して不正だと ( たとえば exampmes.namedavid という値があると )

結果に nil が返ってくる

Examinee.find_by(name: 'david').name # nil

原因

Enumerize の挙動のようだ

モデルで enumerize の行を消したら元の値が返ってくるようになった

Examinee.find_by(name: 'david').name # david

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

プロフィール・経歴

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?