Changeset 8102
- Timestamp:
- 11/06/07 23:20:22 (1 year ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/associations.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r8096 r8102 1 1 *SVN* 2 3 * Update association/method mapping table to refected latest collection methods for has_many :through. Closes #8772 [lifofifo] 2 4 3 5 * 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 126 126 # #others | X | X | X 127 127 # #others=(other,other,...) | X | X | 128 # #other_ids | X | X | 128 # #other_ids | X | X | X 129 129 # #other_ids=(id,id,...) | X | X | 130 130 # #others<< | X | X | X … … 134 134 # #others.create(attributes={}) | X | X | 135 135 # #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 139 139 # #others.sum(args*,&block) | X | X | X 140 # #others.empty? | X | X | 140 # #others.empty? | X | X | X 141 141 # #others.clear | X | X | 142 142 # #others.delete(other,other,...) | X | X | X 143 143 # #others.delete_all | X | X | 144 # #others.destroy_all | X | X | 144 # #others.destroy_all | X | X | X 145 145 # #others.find(*args) | X | X | X 146 146 # #others.find_first | X | |