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

Changeset 8305

Show
Ignore:
Timestamp:
12/05/07 20:24:41 (1 year ago)
Author:
marcel
Message:

Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [johnjosephbachir]

Files:

Legend:

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

    r8304 r8305  
    11*SVN* 
     2 
     3* Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [johnjosephbachir] 
    24 
    35* 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  
    416416    #   end 
    417417    # 
    418     #   class GuestPost < ActiveRecord::Base 
    419     #   end 
    420     # 
    421     #   class MemberPost < ActiveRecord::Base 
     418    #   class GuestPost < Post 
     419    #   end 
     420    # 
     421    #   class MemberPost < Post 
    422422    #   end 
    423423    #