4 রেলগুলি ব্যবহার করার সময় হ্রাসকারী সতর্কতা প্রবর্তন করেছে: has_many: un সাথে = সত্য ব্যবহার করে। উদাহরণ স্বরূপ:
has_many :donors, :through => :donations, :uniq => true
নিম্নলিখিত সতর্কতা ফলন:
DEPRECATION WARNING: The following options in your Goal.has_many :donors declaration are deprecated: :uniq. Please use a scope block instead. For example, the following:
has_many :spam_comments, conditions: { spam: true }, class_name: 'Comment'
should be rewritten as the following:
has_many :spam_comments, -> { where spam: true }, class_name: 'Comment'
উপরোক্ত has_many ঘোষণাটি পুনরায় লেখার সঠিক উপায় কী?