QuackatronHQ / Gigarepo

Use of deprecated required detected in belongs_to RB-RL1010
Anti-pattern
Major
1 occurrence in this check
You specified required: false, in Rails > 5.0 the required option is deprecated and you want to use optional: true.
25end
26
27class Post < ApplicationRecord
28  belongs_to :blog, required: false29end