
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
「KeyError: Factory not registered:」に詰まった話 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
「KeyError: Factory not registered:」に詰まった話 - Qiita
class User < ApplicationRecord # Include default devise modules. Others available are: # :confirm... class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable # あるユーザーがフォローしている他ユーザーとのアソシエーション(フォロー) has_many :relationships, foreign_key: 'user_id', dependent: :destroy has_many :followings, through: :relationship