aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/associations_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Fixed that the create_x method from belongs_to wouldn't save the association ...David Heinemeier Hansson2005-09-201-0/+3
* Fixed saving a record with two unsaved belongs_to associations pointing to th...Jamis Buck2005-09-201-0/+45
* Fixed various problems with has_and_belongs_to_many when using customer finde...David Heinemeier Hansson2005-09-131-0/+13
* Fixed that the SQL Server adapter would sometimes return DBI::Timestamp objec...David Heinemeier Hansson2005-09-091-4/+4
* Refactored away all the legacy validate_options calls and replaced them with ...David Heinemeier Hansson2005-09-091-1/+1
* Revert [2040], caused assignment of belongs_to associations to fail in some c...Jamis Buck2005-08-241-6/+17
* Add a failing testJamis Buck2005-08-241-0/+9
* Saving a record with two unsaved belongs_to associations pointing to the same...Jamis Buck2005-08-231-0/+41
* Allow unspecified join-table columns to use to their default values when addi...Jamis Buck2005-07-181-0/+20
* Fixed that has_and_belongs_to_many didn't respect single table inheritance ty...David Heinemeier Hansson2005-07-031-0/+14
* Added support for ODBC connections to MS SQL Server so you can connect from a...David Heinemeier Hansson2005-07-011-4/+24
* Updated all references to the old find_first and find_all to use the new styl...David Heinemeier Hansson2005-06-261-24/+24
* Pass association finder arguments through to the association class exactly as...Jeremy Kemper2005-06-241-1/+1
* Removed the AR::Recursion module--it broke more code than it fixedJamis Buck2005-06-211-0/+38
* Fixed that adding a record to a has_and_belongs_to collection would always sa...David Heinemeier Hansson2005-06-181-0/+16
* Added actual database-changing behavior to collection assigment for has_many ...David Heinemeier Hansson2005-06-161-0/+59
* r1307@iwill: jeremy | 2005-06-13 19:05:00 -0700Jeremy Kemper2005-06-131-4/+7
* Be sure to use the @finder_sql in the has_many association's #find method, ev...Jamis Buck2005-06-131-6/+12
* r1294@iwill: jeremy | 2005-06-13 02:17:42 -0700Jeremy Kemper2005-06-131-2/+11
* Don't expect fixtures to be returned in the order they were inserted.Jeremy Kemper2005-06-121-2/+2
* Do not use instantiated fixtures (in general) in tests. Also, support the use...Jamis Buck2005-06-101-2/+3
* Eager loading of dependent has_one associations won't delete the association ...Jamis Buck2005-06-101-105/+93
* Added a second parameter to the build and create method for has_one that cont...David Heinemeier Hansson2005-06-061-0/+29
* Fixed that :delete_sql in has_and_belongs_to_many associations couldn't acces...David Heinemeier Hansson2005-05-191-0/+19
* Updated documentation here and thereDavid Heinemeier Hansson2005-04-181-10/+13
* Moved build_association and create_association for has_one and belongs_to out...David Heinemeier Hansson2005-04-121-0/+37
* Fixed counter_sql when no records exist in database for PostgreSQL (would giv...David Heinemeier Hansson2005-04-071-0/+4
* Made eager loading work even moreDavid Heinemeier Hansson2005-04-031-26/+1
* Allow order, conditions, and joins in finds that include associationsDavid Heinemeier Hansson2005-04-031-0/+4
* Added new Base.find API and deprecated find_all, find_first. Added preliminar...David Heinemeier Hansson2005-04-031-1/+23
* Added that model.items.delete(child) will delete the child, not just set the ...David Heinemeier Hansson2005-04-021-4/+16
* Added destruction of dependent objects in has_one associations when a new ass...David Heinemeier Hansson2005-03-061-1/+2
* Remove outdated dev-utilsDavid Heinemeier Hansson2005-02-231-1/+0
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-19/+19
* Dont call id explicitly to do reloading that way we get rid of the warnings #...David Heinemeier Hansson2005-02-071-10/+10
* Added the option of supplying an array of ids and attributes to Base#update, ...David Heinemeier Hansson2005-01-251-0/+13
* Added that has_and_belongs_to_many associations with additional attributes al...David Heinemeier Hansson2005-01-241-0/+21
* Fixed that association proxies would fail === tests like PremiumSubscription ...David Heinemeier Hansson2005-01-231-0/+4
* Fixed that the belongs_to and has_one proxy would fail a test like 'if projec...David Heinemeier Hansson2005-01-181-5/+22
* Added test_forgetting_the_load_when_foreign_key_enters_lateDavid Heinemeier Hansson2005-01-171-0/+8
* Test for #489David Heinemeier Hansson2005-01-171-1/+8
* Added support for associating unsaved objects #402 [Tim Bates]David Heinemeier Hansson2005-01-151-21/+211
* Fixed that foreign keys named the same as the association would cause stack o...David Heinemeier Hansson2005-01-111-1/+7
* Added HasManyAssociation#count that works like Base#count #413 [intinig]David Heinemeier Hansson2005-01-021-0/+4
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-011-3/+34
* Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ru...David Heinemeier Hansson2005-01-011-1/+1
* Attempted to capture #286 in a unit test, but couldnt get it to failDavid Heinemeier Hansson2004-12-121-0/+8
* Added counter_sql option for has_many associations [bitsweat]David Heinemeier Hansson2004-12-071-0/+5
* Added reverse order of deleting fixtures, so referential keys can be maintain...David Heinemeier Hansson2004-12-011-4/+4
* InitialDavid Heinemeier Hansson2004-11-241-0/+549