Changeset 4680
- Timestamp:
- 08/05/06 22:35:58 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r4670 r4680 1 1 *SVN* 2 3 * Formally deprecate rich associations. [Koz] 2 4 3 5 * Fixed that default timezones for new / initialize should uphold utc setting #5709 [daniluk@yahoo.com] trunk/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
r4379 r4680 68 68 end 69 69 end 70 70 71 # Deprecated as of Rails 1.2. If your associations require attributes 72 # you should be using has_many :through 71 73 def push_with_attributes(record, join_attributes = {}) 72 74 raise_on_type_mismatch(record) … … 80 82 self 81 83 end 84 deprecate :push_with_attributes 82 85 83 86 alias :concat_with_attributes :push_with_attributes