class Like < ApplicationRecord
validates :user_id,{presence: true}
validates :post_id,{presence: true}
end
//バリデーションを追加する
いいねのデータは、user_idとpost_idの両方が常に存在していないと不完全なデータとなってしまいますので、最初にバリデーションを追加しておきましょう。user_idとpost_idのそれぞれに、値が存在していることをチェックする「presence: true」のバリデーションを追加します。
両方存在しないと不完全なデータになってしまう
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme