aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]Michael Koziarski2006-09-041-1/+1
* Formally deprecate rich associations. [Koz]Michael Koziarski2006-08-051-1/+4
* Fix the has_and_belongs_to_many #create doesn't populate the join for new rec...Rick Olson2006-05-291-0/+11
* Allow :uniq => true with has_many :through associations.Jeremy Kemper2006-05-061-16/+2
* Fixed that records returned from has_and_belongs_to_many associations with ad...David Heinemeier Hansson2006-04-011-3/+9
* Do not implicitly mark recordss of has_many :through as readonly but do mark ...Marcel Molina2006-03-301-1/+1
* Changed has_and_belongs_to_many join to INNER JOIN for Mysql 3.23.x. Closes ...Rick Olson2006-03-261-1/+1
* remove some commented-out cruftRick Olson2006-03-161-4/+0
* Use association's :conditions when eager loading. [jeremyevans0@gmail.com] cl...Rick Olson2006-03-161-2/+6
* Added option inheritance for find calls on has_and_belongs_to_many and has_ma...David Heinemeier Hansson2005-12-131-1/+3
* Added preliminary support for join models [DHH] Added preliminary support for...David Heinemeier Hansson2005-12-031-36/+34
* has_and_belongs_to_many: use JOIN instead of LEFT JOIN. References #2937.Jeremy Kemper2005-11-211-2/+2
* Added :include as an option for association declarations [DHH]David Heinemeier Hansson2005-11-061-1/+1
* r2915@asus: jeremy | 2005-11-06 05:02:53 -0800Jeremy Kemper2005-11-061-1/+1
* Added extension capabilities to has_many and has_and_belongs_to_many proxies ...David Heinemeier Hansson2005-11-041-0/+10
* HABTM finder sets :readonly => false. Closes #2525.Jeremy Kemper2005-10-201-0/+1
* Parenthesize :conditionsJeremy Kemper2005-10-181-2/+2
* DRYed up Associations#clear. Closes #1906 [Caleb]Tobias Lütke2005-10-141-20/+0
* Fixed various problems with has_and_belongs_to_many when using customer finde...David Heinemeier Hansson2005-09-131-6/+5
* Use the inflector rules made for the purposeDavid Heinemeier Hansson2005-09-111-1/+1
* Dont be ambigious about the condition keyDavid Heinemeier Hansson2005-07-221-1/+1
* Added support for calling constrained class methods on has_many and has_and_b...David Heinemeier Hansson2005-07-221-42/+36
* Allow unspecified join-table columns to use to their default values when addi...Jamis Buck2005-07-181-2/+4
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...David Heinemeier Hansson2005-07-171-2/+2
* Added callbacks on push_with_attributes #1594 [Florian Weber]David Heinemeier Hansson2005-07-051-0/+2
* Fixed that has_and_belongs_to_many didn't respect single table inheritance ty...David Heinemeier Hansson2005-07-031-0/+9
* Fixed that adding a record to a has_and_belongs_to collection would always sa...David Heinemeier Hansson2005-06-181-1/+3
* r1307@iwill: jeremy | 2005-06-13 19:05:00 -0700Jeremy Kemper2005-06-131-1/+1
* Fixed that :delete_sql in has_and_belongs_to_many associations couldn't acces...David Heinemeier Hansson2005-05-191-2/+2
* Order by is no longer a guarenteeDavid Heinemeier Hansson2005-04-141-1/+1
* Qualify the ids used such that eager loading can avoid ambigious keysDavid Heinemeier Hansson2005-04-131-1/+1
* Removed the default order by id on has_and_belongs_to_many queries as it coul...David Heinemeier Hansson2005-04-131-7/+13
* No conditions relevant hereDavid Heinemeier Hansson2005-04-111-1/+1
* Optimized the SQL used to generate has_and_belongs_to_many queries by listing...David Heinemeier Hansson2005-02-221-1/+1
* Added that has_and_belongs_to_many associations with additional attributes al...David Heinemeier Hansson2005-01-241-13/+24
* Added support for associating unsaved objects #402 [Tim Bates]David Heinemeier Hansson2005-01-151-21/+34
* Fixed that conditions in has_many and has_and_belongs_to_many should be inter...David Heinemeier Hansson2005-01-071-1/+1
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-011-10/+36
* Fixed that Base.table_name would expect a parameter when used in has_and_belo...David Heinemeier Hansson2004-12-221-1/+1
* Fixed that has_and_belongs_to_many would generate bad sql when naming convent...David Heinemeier Hansson2004-12-141-4/+4
* Fixed value quoting in all generated SQL statements, so that integers are not...David Heinemeier Hansson2004-12-071-6/+7
* Fixed has_and_belongs_to_many guessing of foreign key so that keys are genera...David Heinemeier Hansson2004-12-071-1/+1
* Silence errors occurring when reloading classesDavid Heinemeier Hansson2004-11-301-2/+2
* InitialDavid Heinemeier Hansson2004-11-241-0/+107