Changeset 8305
- Timestamp:
- 12/05/07 20:24:41 (1 year ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/associations.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r8304 r8305 1 1 *SVN* 2 3 * Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [johnjosephbachir] 2 4 3 5 * Reveal that the type option in migrations can be any supported column type for your database but also include caveat about agnosticism. Closes #7531 [adamwiggins, mikong] trunk/activerecord/lib/active_record/associations.rb
r8301 r8305 416 416 # end 417 417 # 418 # class GuestPost < ActiveRecord::Base419 # end 420 # 421 # class MemberPost < ActiveRecord::Base418 # class GuestPost < Post 419 # end 420 # 421 # class MemberPost < Post 422 422 # end 423 423 #