aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* Don't not remove double negativesJon Leighton2011-01-071-4/+4
* Clean up create, create! and build in HasOneAssociationJon Leighton2011-01-071-14/+8
* merge_with_conditions is not necessary because the conditions will already be...Jon Leighton2011-01-071-9/+0
* Not really worth having the HasAssociation module for just a single methodJon Leighton2011-01-075-21/+9
* Construct an actual ActiveRecord::Relation object for the association scope, ...Jon Leighton2011-01-078-113/+72
* Use encode_with for marshallingJon Leighton2011-01-071-0/+20
* send() will raise an ArgumentError, so we should leverage rubyAaron Patterson2011-01-071-16/+6
* no need for parensAaron Patterson2011-01-071-1/+1
* use a hash for caching aggregations rather than ivarsAaron Patterson2011-01-072-14/+9
* method is never called with argumentsAaron Patterson2011-01-071-4/+2
* only rescue from Mysql::Error exceptions [#6236 state:resolved]Aaron Patterson2011-01-071-4/+9
* just use a hash for doing association cachingAaron Patterson2011-01-073-11/+14
* no need for selfAaron Patterson2011-01-061-1/+1
* adding an `encode_with` method for Psych dump/load methodsAaron Patterson2011-01-051-0/+16
* AR internals expect a normal hash, otherwise there are serialization incompat...Aaron Patterson2011-01-051-1/+1
* no need to specify selfAaron Patterson2011-01-051-1/+1
* no need to send a symbol to send()Aaron Patterson2011-01-051-1/+1
* avoid creating so many Arel::Table objectsAaron Patterson2011-01-051-6/+9
* use attr_reader and alias methods to access instance variablesAaron Patterson2011-01-051-8/+4
* we have a method for this, so let's use itAaron Patterson2011-01-051-2/+2
* use arel ast construction rather than generating stringsAaron Patterson2011-01-051-1/+7
* use arel to construct AST rather than generate stringsAaron Patterson2011-01-051-2/+3
* Merge remote branch 'rsim/require_deprecation'Aaron Patterson2011-01-041-0/+2
|\
| * require ActiveSupport deprecatation file before using deprecate method in dat...Raimonds Simanovskis2011-01-041-0/+2
* | Explicitly select * from has_and_belongs_to_many association tables, simplify...Raimonds Simanovskis2011-01-042-2/+3
|/
* Remove undocumented feature from has_one where you could pass false as the se...Jon Leighton2011-01-032-28/+11
* ActiveRecord::Relation#primary_key should return a string, just like ActiveRe...Jon Leighton2011-01-036-28/+21
* Implement deprecated version of AssociationReflection#primary_key_name, which...Jon Leighton2011-01-031-0/+6
* When preloading a belongs_to, the target should still be set (to nil) if ther...Jon Leighton2011-01-033-12/+16
* Create the association scope directly rather than going through with_scopeJon Leighton2011-01-037-31/+32
* Make Relation#create_with always merge rather than overwrite, not just when m...Jon Leighton2011-01-032-4/+2
* Use the association directly in other places tooJon Leighton2011-01-033-20/+13
* Let AssociationCollection#find use #scoped to do its finding. Note that I am ...Jon Leighton2011-01-038-99/+68
* Rename AssociationProxy#foreign_key_present to foreign_key_present?Jon Leighton2011-01-034-7/+7
* Allow assignment on has_one :through where the owner is a new record [#5137 s...Jon Leighton2011-01-039-62/+52
* Have a proper AssociationReflection#foreign_type method rather than using opt...Jon Leighton2011-01-037-28/+18
* Add documentation for the :foreign_type option on belongs_toJon Leighton2011-01-031-0/+5
* herp derpricating add_limit_offset!Aaron Patterson2011-01-032-0/+4
* User id instead of quoted_id to prevent double quoting. Fixes failing test fo...Robert Pankowecki (Gavdi)2011-01-041-1/+1
* Rename AssociationReflection#primary_key_name to foreign_key, since the optio...Jon Leighton2010-12-3115-51/+51
* Support for :counter_cache on polymorphic belongs_toJon Leighton2010-12-311-1/+1
* Refactor BelongsToAssociation to allow BelongsToPolymorphicAssociation to inh...Jon Leighton2010-12-315-114/+91
* Specify the STI type condition using SQL IN rather than a whole load of ORs. ...Jon Leighton2010-12-313-6/+14
* Get rid of extra_conditions param from configure_dependency_for_has_many. I c...Jon Leighton2010-12-311-9/+3
* And owner_quoted_id can go tooJon Leighton2010-12-313-22/+0
* Now we can drop-kick AssociationReflection#dependent_conditions into oblivion.Jon Leighton2010-12-311-11/+0
* Refactor configure_dependency_for_has_many to use AssociationCollection#delet...Jon Leighton2010-12-311-38/+20
* Make sure Model#touch doesn't try to update non existing columnsPratik Naik2010-12-301-1/+1
* Make serialized fixtures work againPratik Naik2010-12-291-1/+2
* Do not use primary key on insertion when it's nilSantiago Pastorino2010-12-291-2/+2