रेल 4 का उपयोग करते समय एक पदावनति की चेतावनी दी गई है: uniq => true with 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 घोषणा को फिर से लिखने का सही तरीका क्या है?