mirror of
https://github.com/github/rails.git
synced 2026-02-03 18:55:29 -05:00
Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [johnjosephbachir]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8305 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [johnjosephbachir]
|
||||
|
||||
* 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]
|
||||
|
||||
* More complete documentation for find_by_sql. Closes #7912 [fearoffish]
|
||||
|
||||
@@ -415,10 +415,10 @@ module ActiveRecord
|
||||
# has_many :assets, :as => :attachable, :dependent => :destroy
|
||||
# end
|
||||
#
|
||||
# class GuestPost < ActiveRecord::Base
|
||||
# class GuestPost < Post
|
||||
# end
|
||||
#
|
||||
# class MemberPost < ActiveRecord::Base
|
||||
# class MemberPost < Post
|
||||
# end
|
||||
#
|
||||
# == Caching
|
||||
|
||||
Reference in New Issue
Block a user