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.

書いた覚えのないバリデーションが発生してしまう

Posted at

下記の記述で解決したため、メモ_φ(・_・

●外部キーのバリデーション
Rails4まではアソシエーションを定義した時のbelongs_toの外部キーでnilを許可しないようにbelongs_to :user, required: trueなどのバリデーションを手動で定義していました。
ですが、rails5からは自動でnilを許可しないバリデーションが定義されるようになりました。
これを意図的に外すには下記のように定義します。

モデル
belongs_to :user, optional: true

▼下記ページより引用しました
pikawaka
https://pikawaka.com/rails/validation

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?