Rails 4 ได้แนะนำคำเตือนการเลิกใช้งานเมื่อใช้: uniq => true กับ has_many: through ตัวอย่างเช่น:
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 ด้านบนอีกครั้ง