aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
* save(false) is gone, use save(:validate => false) instead.José Valim2010-01-171-1/+1
* Use Arel::Table instead of ActiveRecord::Relation from HABTM and has_many#del...Pratik Naik2010-01-011-3/+3
* Add Relation#delete [Pratik Naik, Emilio Tagua]Pratik Naik2010-01-011-1/+1
* Rename Model.conditions and relation.conditions to .wherePratik Naik2009-12-261-1/+1
* Revert "Revert "Assert primary key does not exist in habtm when the associati...Jeremy Kemper2009-11-231-13/+1
* Revert "Split arel_table into method to get a relation and another to memoize...Jeremy Kemper2009-11-131-2/+2
* Split arel_table into method to get a relation and another to memoize the def...Jeremy Kemper2009-11-131-2/+2
* Arel::In -> Arel::Predicates::InJeremy Kemper2009-11-021-1/+1
* Merge commit 'rails/master'Emilio Tagua2009-09-141-2/+2
|\
| * Fix habtm associations when using multiple databasessdsykes2009-09-121-2/+2
* | Merge commit 'rails/master'Emilio Tagua2009-09-081-0/+16
|\|
| * Revert "Assert primary key does not exist in habtm when the association is de...Jeremy Kemper2009-09-021-0/+16
* | Merge commit 'rails/master'Emilio Tagua2009-09-011-16/+0
|\|
| * Assert primary key does not exist in habtm when the association is defined, i...José Valim2009-09-011-16/+0
* | habtm insertion with ARel integration.Emilio Tagua2009-08-181-8/+5
* | habtm delete method integrated with ARel.Emilio Tagua2009-08-181-4/+5
|/
* raises an exception on habtm join table inserts if join table contains a prim...Jaime Bellmyer2009-08-091-2/+14
* raises exception (ActiveRecord::ConfigurationError with message) on habtm ass...Jaime Bellmyer2009-08-091-0/+4
* Revert "Revert "Generate proper :counter_sql from :finder_sql when there is a...Pratik Naik2009-07-011-9/+1
* Revert "Generate proper :counter_sql from :finder_sql when there is a newline...Yehuda Katz + Carl Lerche2009-06-221-1/+9
* Generate proper :counter_sql from :finder_sql when there is a newline charact...Patrick Joyce2009-06-211-9/+1
* Fixed that autosave should validate associations even if master is invalid [#...David Heinemeier Hansson2009-02-271-2/+2
* Cache columns for has_and_belongs_to_many associationslukeludwig2009-01-171-3/+9
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-0/+10
* Updated has_and_belongs_to_many association to fix :finder_sql interpolation....Nathan Witmer2008-08-161-3/+1
* Extract owner_quoted_id so it can be overridden. [#292 state:committed]Andre Arko2008-06-251-3/+3
* fix eager loading with dynamic findersBrandon Keepers2008-06-091-0/+1
* Fixes a subtle bug when using symbols for key definitions in habtm associationsDavid Dollar2008-04-231-3/+3
* Remove duplicate code from associations. [Pratik]Pratik Naik2008-04-061-49/+4
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-4/+0
* Ensure HABTM#create and HABTM#build do not load entire association. [Pratik]Pratik Naik2008-04-051-2/+0
* Make HABTM#create behave the same as << with after_add callbacks. Closes #11...Michael Koziarski2008-04-041-4/+3
* Ensure that modifying has_and_belongs_to_many actions clear the query cache. ...Rick Olson2008-01-181-5/+5
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-4/+4
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-8/+8
* Fixed that habtm associations should be able to set :select as part of their ...David Heinemeier Hansson2007-12-051-2/+2
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-211-1/+5
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-211-1/+1
* Refactor association create and build so before & after callbacks behave cons...Jeremy Kemper2007-10-161-21/+16
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-3/+3
* Stop users from calling .create on a has_many / habtm association when the ow...Michael Koziarski2007-09-181-2/+19
* Formatting, grammar and spelling fixes for the associations documentation. [s...Michael Koziarski2007-08-281-3/+3
* Make habtm respect the :select option. Closes #9207. [Aleksey Kondratenko]Michael Koziarski2007-08-071-1/+2
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Move from select * to select tablename.* to avoid clobbering IDs. Closes #888...Michael Koziarski2007-07-071-0/+1
* Remove deprecated push_with_attributes.Jeremy Kemper2007-06-111-22/+5
* Simplify association proxy implementation by factoring construct_scope out of...Jeremy Kemper2006-11-191-10/+4
* update deprecations to include alternative methods (where available)Jamis Buck2006-10-241-1/+1
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-4/+4
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-4/+4