aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/face.rb
Commit message (Collapse)AuthorAgeFilesLines
* Typo fix [ci skip]amitkumarsuroliya2015-09-071-1/+1
| | | `lengh` should be `length`
* Address ORA-00972: identifier is too long when tested with OracleYasuo Honda2014-07-141-1/+2
| | | | by using shorter attribute names.
* use name specified by 'as' for automatic inverse association to avoid ↵Andrew S. Brown2014-06-101-0/+1
| | | | reflecting on wrong association
* Make polymorphic_inverse_of in Reflection throw an ↵Murray Steele2009-12-281-1/+2
| | | | | | InverseOfAssociationNotFoundError if the supplied class doesn't have the appropriate association. [#3520 state:resolved] Signed-off-by: Eloy Duran <eloy.de.enige@gmail.com>
* Add inverse polymorphic association support. [#3520 state:resolved]George Ogata2009-12-281-0/+1
| | | | Signed-off-by: Eloy Duran <eloy.de.enige@gmail.com>
* Providing support for :inverse_of as an option to associations.Murray Steele2009-05-041-0/+5
You can now add an :inverse_of option to has_one, has_many and belongs_to associations. This is best described with an example: class Man < ActiveRecord::Base has_one :face, :inverse_of => :man end class Face < ActiveRecord::Base belongs_to :man, :inverse_of => :face end m = Man.first f = m.face Without :inverse_of m and f.man would be different instances of the same object (f.man being pulled from the database again). With these new :inverse_of options m and f.man are the same in memory instance. Currently :inverse_of supports has_one and has_many (but not the :through variants) associations. It also supplies inverse support for belongs_to associations where the inverse is a has_one and it's not a polymorphic. Signed-off-by: Murray Steele <muz@h-lame.com> Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>