aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* | Remove whitespace.Emilio Tagua2009-08-191-0/+1
| |
* | Use immutable relation objects to generate queries.Emilio Tagua2009-08-181-19/+18
| |
* | Use finder options as relation method names to provide more familiarEmilio Tagua2009-08-181-17/+17
| | | | | | | | | | naming. Use bang methods convention in methods that alter the relation.
* | Clean up relation joins when finding records with included associations.Emilio Tagua2009-08-171-12/+12
| |
* | Use ARel's joins when building a query for finding records with includedEmilio Tagua2009-08-141-48/+58
| | | | | | | | associations.
* | Merge commit 'rails/master'Emilio Tagua2009-08-101-17/+49
|\| | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/calculations.rb activerecord/lib/active_record/connection_adapters/mysql_adapter.rb activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * Enable has_many :through for going through a has_one association on the join ↵Gabe da Silveira2009-08-101-2/+29
| | | | | | | | | | | | model [#2719 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Changed to use klass instead of constantizing in assign_ids generated methodDmitry Ratnikov2009-08-091-1/+1
| | | | | | | | | | | | [#260 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Fix for nested :include with namespaced models.Rich Bradley2009-08-091-1/+1
| | | | | | | | [#260 state:committed]
* | Removed unused methods.Emilio Tagua2009-08-071-70/+56
| |
* | Removed useless OR.Emilio Tagua2009-08-071-1/+1
| |
* | More work on removing plain SQL from associations and use ARel instead.Emilio Tagua2009-08-071-20/+19
| |
* | Merge commit 'rails/master'Emilio Tagua2009-07-311-5/+71
|\| | | | | | | | | Conflicts: activerecord/lib/active_record/associations.rb
| * Merge docrailsPratik Naik2009-07-251-5/+71
| |
* | Introduced ActiveRecord::Relation, a layer between an ARel relation and an ↵Emilio Tagua2009-07-211-8/+9
| | | | | | | | AR relation
* | Merge commit 'rails/master'Emilio Tagua2009-07-161-3/+6
|\|
| * Add primary_key option to belongs_to associationSzymon Nowak2009-07-151-3/+6
| | | | | | | | | | | | [#765 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* | Added ActiveRecord::Base#(where|join|project|group|order|take|skip) methods.Emilio Tagua2009-07-161-8/+8
| |
* | Merge commit 'rails/master'Emilio Tagua2009-07-141-1/+8
|\|
| * Use map! instead of map for <association>_idsPratik Naik2009-07-131-2/+2
| |
| * Optimize <association>_ids for hm:t with belongs_to sourcePratik Naik2009-07-131-1/+8
| |
* | Arel now buils SQL queries for associations. Removed old code andEmilio Tagua2009-06-231-47/+6
| | | | | | | | updated Arel version to support this.
* | Leave the quoting part to ARelEmilio Tagua2009-06-121-7/+2
|\|
| * HasOneThroughAssociation still shouldn't derive from HasManyThroughAssociation.Adam Milligan2009-06-121-7/+2
| | | | | | | | | | | | [#1642 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* | Use ARel in SQL generation through associationsEmilio Tagua2009-06-101-11/+15
| |
* | Merge commit 'rails/master'Emilio Tagua2009-06-021-1/+1
|\| | | | | | | | | | | Conflicts: activerecord/lib/active_record.rb
| * Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-281-1/+1
| | | | | | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* | Merge commit 'rails/master'Emilio Tagua2009-05-181-1/+3
|\| | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/base.rb activerecord/lib/active_record/migration.rb activerecord/test/cases/helper.rb
| * Fixed limited eager loading associations with numbers in the name [#2668 ↵Benjamin Floering2009-05-181-1/+1
| | | | | | | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+2
| |
* | Merge commit 'rails/master'Emilio Tagua2009-05-121-10/+26
|\|
| * Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-4/+2
| |
| * Fixed eager load error on find with include => [:table_name] and hash ↵Anthony Crumley2009-05-101-4/+16
| | | | | | | | | | | | conditions like {:table_name => {:column => 'value'}} Signed-off-by: Michael Koziarski <michael@koziarski.com>
| * honour :inverse_of for joins based includeFrederick Cheung2009-05-101-2/+8
| | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* | Merge commit 'rails/master'Emilio Tagua2009-05-051-3/+9
|\|
| * Providing support for :inverse_of as an option to associations.Murray Steele2009-05-041-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Calculations now use Arel to construct the query.Emilio Tagua2009-04-291-10/+18
|/ | | | Implemented other methods in AR::Base with Arel support.
* Ensure :dependent => :delete_all works for association with hash conditionsPratik Naik2009-04-201-1/+1
|
* Ensure JoinAssociation uses aliased table name when multiple associations ↵Pratik Naik2009-04-201-1/+1
| | | | have hash conditions on the same table
* Added :touch option to belongs_to associations that will touch the parent ↵David Heinemeier Hansson2009-04-161-23/+45
| | | | record when the current record is saved or destroyed [DHH]
* Ensure NoMethodError isn't raised when some of the nested eager loaded ↵Murray Steele2009-03-121-4/+9
| | | | | | associations are empty [#1696 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix RDoc grammar and ensure hm:t tests can run in isolation. [#1644 ↵Adam Milligan2009-03-071-1/+1
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Ensure belongs_to association with a counter cache in name spaced model ↵Adam Cooper2009-03-061-3/+1
| | | | | | works [#1678 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Ensure self referential HABTM associations raise an exception if ↵Tom Lea2009-03-061-0/+10
| | | | | | association_foreign_key is missing. [#1252 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Force all internal calls to Array#to_sentence to use English [#2010 ↵David Heinemeier Hansson2009-02-271-1/+1
| | | | state:resolved]
* Fixed that autosave should validate associations even if master is invalid ↵David Heinemeier Hansson2009-02-271-118/+2
| | | | [#1930 status:committed]
* Merge with docrailsPratik Naik2009-02-241-36/+29
|
* Merge docrails along with the new guides and guides generation codePratik Naik2009-02-061-0/+16
|
* Merge docrailsPratik Naik2009-02-011-4/+5
|
* Add support for nested object forms to ActiveRecord and the helpers in ↵Eloy Duran2009-02-011-43/+48
| | | | | | | | ActionPack Signed-Off-By: Michael Koziarski <michael@koziarski.com> [#1202 state:committed]