• A
    Ambiguous reflections are on :through relationships are no longer supported. · b483a0d2
    Aaron Patterson 提交于
    For example, you need to change this:
    
      class Author < ActiveRecord::Base
        has_many :posts
        has_many :taggings, :through => :posts
      end
    
      class Post < ActiveRecord::Base
        has_one :tagging
        has_many :taggings
      end
    
      class Tagging < ActiveRecord::Base
      end
    
    To this:
    
      class Author < ActiveRecord::Base
        has_many :posts
        has_many :taggings, :through => :posts, :source => :tagging
      end
    
      class Post < ActiveRecord::Base
        has_one :tagging
        has_many :taggings
      end
    
      class Tagging < ActiveRecord::Base
      end
    b483a0d2
可在Tags中查看这些版本中当前仓库的状态.
CHANGELOG.md 6.6 KB