aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Make belongs_to :dependent => :destroy destroy self before associated ↵Ben VandenBos2009-01-161-2/+2
| | | | | | | | object [#1079 state:resolved] If foreign key constraints are in place then deleteing the associated object first will cause a foreign key violation Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
* Merge commit 'fred/pullable'Pratik Naik2008-12-301-2/+2
|\
| * Fix to_sentence being used with options removed by 273c77Frederick Cheung2008-12-271-1/+1
| |
| * Fix :include of has_many associations with :primary_key optionFrederick Cheung2008-12-261-1/+1
| |
* | Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-18/+18
|/ | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix configure_dependency_for_has_many not quoting conditions properly [#1461 ↵Frederick Cheung2008-12-211-3/+3
| | | | state:resolved]
* Fix has many through not quoting table names [#1163 state:resolved]Karthik Krishnan2008-12-201-1/+1
| | | | Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
* Merge docrailsPratik Naik2008-12-191-5/+5
|
* Don't include table_name twiceFrederick Cheung2008-12-181-1/+1
|
* Ensure :include checks joins when determining if it can preload [#528 ↵Frederick Cheung2008-12-181-10/+33
| | | | state:resolved]
* Add :having option to find, to use in combination with grouped finds. Also ↵miloops2008-12-011-4/+8
| | | | | | | added to has_many and has_and_belongs_to_many associations. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1028 state:committed]
* Ensure hash conditions on referenced tables are considered when eager ↵Paul2008-11-261-0/+1
| | | | | | loading with limit/offset. [#1404 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Autoload ActiveRecord filesJoshua Peek2008-11-241-10/+12
|
* Added :counter_sql as a valid key for habtm associationsTekin Suleyman2008-11-071-1/+1
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Merge docrails. Remove unnecessary files.Pratik Naik2008-11-021-0/+8
|
* Make sure habtm use class variable to list association valid keysLuca Guidi2008-11-011-9/+12
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1310 state:committed]
* Skip collection ids reader optimization if using :finder_sqlJeremy Kemper2008-10-231-1/+1
|
* Merge with docrails. Also add a rake task to generate guides in your rails ↵Pratik Naik2008-10-211-1/+2
| | | | | | | | application : rake doc:guides The rake task will generate guides inside doc/guides directory of your application. Open index.html to browse.
* Remove the functionality introduce in 28d3390Michael Koziarski2008-10-101-12/+1
| | | | There are several situations it doesn't cater for, and the inconsistency isn't worth blocking 2.2.
* explicitly including child associations that are also included in the parent ↵Will Bryant2008-10-101-0/+5
| | | | | | | association definition should not result in double records in the collection/double loads (#1110) Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1110 state:committed]
* Merge docrailsPratik Naik2008-10-051-2/+6
|
* Refactor configure_dependency_for_has_many to use a few more methods.Hongli Lai (Phusion)2008-09-241-3/+34
| | | | | | | Add an additional conditions option to make it slightly easier for certain plugins. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1087 state:committed]
* Add Model#delete instance method, similar to Model.delete class method. ↵Hongli Lai (Phusion2008-09-211-2/+2
| | | | | | [#1086 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* applied patch to fix the associations with blocks in modules bug from an old ↵Adeh DeSandies2008-09-201-4/+4
| | | | trac ticket
* Fixed an error triggered by a reload followed by a foreign key assignment.Nathaniel Talbott2008-09-201-1/+5
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Support for updating a belongs to association from the foreign key (without ↵Jon Leighton2008-09-131-1/+8
| | | | | | | saving and reloading the record) Signed-off-by: Michael Koziarski <michael@koziarski.com> [#142 state:committed]
* Revert "Add :accessible option to Associations for allowing mass assignments ↵Pratik Naik2008-09-101-18/+4
| | | | | | | | | | | | using hash. [#474 state:resolved]" This reverts commit e0750d6a5c7f621e4ca12205137c0b135cab444a. Conflicts: activerecord/CHANGELOG activerecord/lib/active_record/associations.rb activerecord/lib/active_record/associations/association_collection.rb
* Add special AssociationReflection methods for creating association objects, ↵Hongli Lai (Phusion)2008-09-091-1/+1
| | | | | | | | and modify the code base to use those methods instead of creating association objects directly. This allows plugins to hook into association object creation behavior. [#986 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Make the options that has_many, belongs_to and other association generation ↵Hongli Lai (Phusion)2008-09-091-18/+30
| | | | | | | | methods can accept, configurable. [#985 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Merge docrailsPratik Naik2008-09-031-8/+7
|
* Some performance goodness for AR associations.Clemens Kofler2008-09-031-32/+32
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Use reflection primary_key instead of id for when selecting association ids.miloops2008-08-301-1/+1
| | | | | | [#906 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Performance: Better query for ASSOCIATION_ids. Select only ids if the ↵miloops2008-08-301-1/+5
| | | | | | association hasn't been loaded. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Merge scoped :joins together instead of overwriting them. May expose scoping ↵Andrew White2008-08-281-2/+2
| | | | | | | | bugs in your code! [#501 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-0/+3
| | | | | | [#831 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Fix two has_one :through errorspivotal2008-08-271-3/+2
| | | | | | | | * Set the association target on assignment; * Reset target to nil on reset, rather than empty array. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#895 state:committed]
* Load the first and not the last has_one result when doing join-based eager ↵Tarmo Tänav2008-08-251-0/+1
| | | | | | | | | | | loading This matters when the has_one is defined with an order in which case there is an expectation that the first one will be loaded. [#904 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Implement old-skool eagerloading for has_one :throughFrederick Cheung2008-08-251-2/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Don't interpret decimals as table names in ↵Peter Wagenet2008-08-211-3/+3
| | | | | | ActiveRecord::Associations::ClassMethods#references_eager_loaded_tables? [#532 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fixed STI type condition for eager loading of associationsTarmo Tänav2008-08-161-4/+2
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix file permissionsTarmo Tänav2008-07-311-0/+0
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Merge docrails changesPratik Naik2008-07-281-134/+284
|
* Use klass.sti_name to make sure associations take store_full_sti_class into ↵Daniel Guettler2008-07-221-2/+2
| | | | | | account. [#671 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Merge with docrails.Pratik Naik2008-07-161-3/+4
|
* Fixed postgresql limited eager loading for the case where scoped :order was ↵Tarmo Tänav2008-07-141-3/+8
| | | | present
* Add :accessible option to Associations for allowing mass assignments using ↵David Dollar2008-07-141-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | hash. [#474 state:resolved] Allows nested Hashes (i.e. from nested forms) to hydrate the appropriate ActiveRecord models. class Post < ActiveRecord::Base belongs_to :author, :accessible => true has_many :comments, :accessible => true end post = Post.create({ :title => 'Accessible Attributes', :author => { :name => 'David Dollar' }, :comments => [ { :body => 'First Post!' }, { :body => 'Nested Hashes are great!' } ] }) post.comments << { :body => 'Another Comment' } Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]Cheah Chu Yeow2008-07-091-2/+2
|
* Add support for :primary_key option to has_one as well as has_many so that a ↵Brad Greenlee2008-07-061-1/+2
| | | | | | key other than the default primary key can be used for the association Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Add has_many :primary_key option to allow setting the primary key on a has ↵Andre Arko2008-07-061-2/+3
| | | | | | many association Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Make sure associated has_many/habtm objects get saved even when :validate => ↵Jan De Poorter2008-06-271-7/+12
| | | | | | false is used. [#486 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>