aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
* removing more calls to deprecated methodsAaron Patterson2010-12-021-2/+3
* reduce method callsAaron Patterson2010-11-241-1/+1
* removing ternaryAaron Patterson2010-11-231-1/+1
* Refactor && simplify count_records.Emilio Tagua2010-11-231-5/+1
* Remove explicit return and avoid creating local var.Emilio Tagua2010-11-241-2/+1
* Remove explicit return.Emilio Tagua2010-11-241-1/+1
* Refactoring: replace the mix of variables like @finder_sql, @counter_sql, etc...Jon Leighton2010-10-301-32/+24
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-4/+4
* removing references to arel constantsAaron Patterson2010-08-131-1/+1
* avoiding symbol to proc againAaron Patterson2010-08-131-1/+1
* standarizes the use of the article "an" for "SQL" and "SQLite"Xavier Noria2010-08-051-1/+1
* splitting a really long line into multiple lines which is easy on eyesNeeraj Singh2010-06-291-1/+5
* Adds title to activerecord/lib/active_record/associations/*Rizwan Reza2010-06-161-0/+1
* clean up more warnings, remove unnecessary methods, fix eval line numbers. [#...Aaron Patterson2010-03-161-0/+4
* 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-1/+1
* Rename Model.conditions and relation.conditions to .wherePratik Naik2009-12-261-1/+1
* Revert "Split arel_table into method to get a relation and another to memoize...Jeremy Kemper2009-11-131-1/+1
* Split arel_table into method to get a relation and another to memoize the def...Jeremy Kemper2009-11-131-1/+1
* Arel::In -> Arel::Predicates::InJeremy Kemper2009-11-021-1/+1
* has_many nullify associations keys using ARel.Emilio Tagua2009-08-181-9/+9
* Fix that counter_cache breaks with has_many :dependent => :nullify.Gabe da Silveira2009-08-091-0/+1
* 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
* Providing support for :inverse_of as an option to associations.Murray Steele2009-05-041-0/+5
* Fixed that autosave should validate associations even if master is invalid [#...David Heinemeier Hansson2009-02-271-2/+2
* Merge with docrails. Also add a rake task to generate guides in your rails ap...Pratik Naik2008-10-211-0/+1
* Update the documentation to reflect the change handling :group earlierMichael Koziarski2008-09-161-1/+4
* Merge docrailsPratik Naik2008-09-031-0/+14
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-26/+0
* Implement count limit/offset support for has_many associationsTarmo Tänav2008-08-271-1/+10
* Fix has_many#count_records. [#865 state:resolved]Xavier Noria2008-08-211-2/+5
* Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]Cheah Chu Yeow2008-07-091-2/+2
* Add has_many :primary_key option to allow setting the primary key on a has ma...Andre Arko2008-07-061-0/+8
* 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-1/+1
* Ensure AssociationCollection#count works with empty condition. [#271 state:re...Pratik Naik2008-05-291-1/+1
* Remove duplicate code from associations. [Pratik]Pratik Naik2008-04-061-41/+0
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-8/+0
* Ensure HABTM#create and HABTM#build do not load entire association. [Pratik]Pratik Naik2008-04-051-19/+0
* Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen]Rick Olson2008-03-241-1/+4
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-3/+3
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-2/+2
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-211-1/+1
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-211-1/+1
* Allow find on a has_many association defined with :finder_sql to accept id ar...Marcel Molina2007-10-261-1/+1
* Refactor association create and build so before & after callbacks behave cons...Jeremy Kemper2007-10-161-7/+1
* Removed unused @join_sql reference (closes #9174) [danger]David Heinemeier Hansson2007-09-221-1/+1
* Fix association writer with :dependent => :nullify. Closes #7314.Jeremy Kemper2007-09-141-8/+11