Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8102

Show
Ignore:
Timestamp:
11/06/07 23:20:22 (1 year ago)
Author:
marcel
Message:

Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [lifofifo]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/CHANGELOG

    r8096 r8102  
    11*SVN* 
     2 
     3* Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [lifofifo] 
    24 
    35* Explain semantics of having several different AR instances in a transaction block. Closes #9036 [jacobat, Marcel Molina] 
  • trunk/activerecord/lib/active_record/associations.rb

    r8054 r8102  
    126126    #   #others                           |   X   |    X     |    X 
    127127    #   #others=(other,other,...)         |   X   |    X     |     
    128     #   #other_ids                        |   X   |    X     |     
     128    #   #other_ids                        |   X   |    X     |    X 
    129129    #   #other_ids=(id,id,...)            |   X   |    X     |     
    130130    #   #others<<                         |   X   |    X     |    X 
     
    134134    #   #others.create(attributes={})     |   X   |    X     |     
    135135    #   #others.create!(attributes={})    |   X   |    X     |    X 
    136     #   #others.size                      |   X   |    X     |     
    137     #   #others.length                    |   X   |    X     |     
    138     #   #others.count                     |       |    X     |     
     136    #   #others.size                      |   X   |    X     |    X 
     137    #   #others.length                    |   X   |    X     |    X 
     138    #   #others.count                     |       |    X     |    X 
    139139    #   #others.sum(args*,&block)         |   X   |    X     |    X 
    140     #   #others.empty?                    |   X   |    X     |     
     140    #   #others.empty?                    |   X   |    X     |    X 
    141141    #   #others.clear                     |   X   |    X     |     
    142142    #   #others.delete(other,other,...)   |   X   |    X     |    X 
    143143    #   #others.delete_all                |   X   |    X     |     
    144     #   #others.destroy_all               |   X   |    X     |     
     144    #   #others.destroy_all               |   X   |    X     |    X 
    145145    #   #others.find(*args)               |   X   |    X     |    X 
    146146    #   #others.find_first                |   X   |          |