aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
Commit message (Expand)AuthorAgeFilesLines
* Make sure that the Schema Dumper supports non-standard primary keys with MySQ...Michael Koziarski2007-10-251-0/+10
* Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, ...Marcel Molina2007-10-231-6/+4
* Assigning an instance of a foreign class to a composed_of aggregate calls an ...Jeremy Kemper2007-10-231-37/+26
* Assigning nil to a composed_of aggregate also sets its immediate value to nil...Jeremy Kemper2007-10-231-2/+2
* validates_uniqueness_of behaves well with abstract superclasses. References #...Jeremy Kemper2007-10-231-1/+15
* Ensure that mysql quotes table names with database names correctly. Closes #...Rick Olson2007-10-201-1/+1
* Add t.belongs_to and t.references to sexy migrations [arthurgeek]Michael Koziarski2007-10-191-0/+30
* Raise an intelligible error message when migration aren't named correctly [br...Michael Koziarski2007-10-171-1/+9
* Qualified column names work in hash conditions, like :conditions => { 'commen...Jeremy Kemper2007-10-161-1/+13
* Fix regression where the association would not construct new finder SQL on sa...Jeremy Kemper2007-10-161-4/+4
* Refactor association create and build so before & after callbacks behave cons...Jeremy Kemper2007-10-163-38/+44
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-167-43/+65
* Fix join table docs error in schema_statements. Closes #9880 [lawrence]Jeremy Kemper2007-10-161-1/+1
* Alias association #build to #new so it behaves predictably. Closes #8787.Jeremy Kemper2007-10-151-0/+1
* Factor out checks for duplicable objects. Closes #9333.Jeremy Kemper2007-10-152-12/+3
* Fix Json related documentation for render and the AR serializer. Closes #9814...Michael Koziarski2007-10-151-0/+53
* Add notes to documentation regarding attr_readonly behavior with counter cach...Rick Olson2007-10-141-0/+3
* Observers can observe model names as symbols properly now. Closes #9869 [qu...Rick Olson2007-10-141-1/+2
* Update versions here tooDavid Heinemeier Hansson2007-10-121-1/+1
* eval with __FILE__ and __LINE__Jeremy Kemper2007-10-102-6/+6
* find_and_(initialize|create)_by methods can now properly initialize protected...Tobias Lütke2007-10-101-7/+16
* Ensure that 'autosaving' works when associations aren't loaded [Bryan Helmkam...Michael Koziarski2007-10-101-6/+9
* Update :dependent docs and improve its argument error message.Jeremy Kemper2007-10-091-34/+32
* belongs_to infers the foreign key from the association name instead of from t...Jeremy Kemper2007-10-081-1/+1
* Make sure AR::Base#clone handles attr changes made in after_initialize hooks....Michael Koziarski2007-10-081-3/+3
* PostgreSQL: support multiline default values. Closes #7533.Jeremy Kemper2007-10-081-14/+14
* Dr Math meets Captain Obvious.Jeremy Kemper2007-10-081-1/+1
* MySQL: fix change_column on not-null columns that don't accept dfeault values...Jeremy Kemper2007-10-081-2/+2
* Change Migration documentation to use the new syntax. Closes #9813 [sjgman9]Michael Koziarski2007-10-081-5/+5
* validates_uniqueness_of behaves well with single-table inheritance. Closes #3...Jeremy Kemper2007-10-081-1/+4
* Use fast date/time parsing by default. Closes #9811.Jeremy Kemper2007-10-072-34/+33
* Raise ProtectedAttributeAssignmentError in development and test environments ...Jeremy Kemper2007-10-071-14/+34
* Reinstate failsafe date/time parsing rescues. Head off some obvious failures ...Jeremy Kemper2007-10-072-22/+29
* MySQL: speedup date/time parsing.Jeremy Kemper2007-10-072-58/+94
* Check for the dir instead of relying on an exception.Jeremy Kemper2007-10-071-5/+7
* Fix calling .clear on a has_many :dependent=>:delete_all association. [ta...Michael Koziarski2007-10-071-1/+1
* Allow change_column to set NOT NULL in the PostgreSQL adaptor. Closes #3904 [...Michael Koziarski2007-10-071-17/+12
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-063-6/+20
* Only cache attributes which need it for performance reasons. Closes #9767 [sk...Michael Koziarski2007-10-061-1/+24
* Fix that ActiveRecord would create attribute methods and override custom attr...Rick Olson2007-10-062-12/+13
* Don't call attr_readonly on polymorphic belongs_to associations, in case it m...Rick Olson2007-10-051-1/+1
* Bump versions for 1.2.4 release.Jeremy Kemper2007-10-051-1/+1
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-041-1/+1
* Try loading activerecord-<adaptername>-adapter gem before trying a plain requ...Jeremy Kemper2007-10-041-8/+3
* only create custom accessors for Kernel:: methodsTobias Lütke2007-10-031-11/+4
* Allow column accessors to be created even if Kernel. or Object# methods of th...Tobias Lütke2007-10-031-4/+15
* Cache the descends_from_activerecord? call to speed up query generation. [ska...Michael Koziarski2007-10-031-3/+8
* Add attr_readonly to specify columns that are skipped during a normal ActiveR...Rick Olson2007-09-302-4/+27
* Make size for has_many :through use counter cache if it exists. Closes #9734...Rick Olson2007-09-301-1/+11
* Don't implicitly assign instance variables by using them as block argumentsJeremy Kemper2007-09-301-1/+2