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?