aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* belongs_to supports :dependent => :destroy and :delete. Closes #10592.Jeremy Kemper2008-01-197-4/+56
* Introduce preload query strategy for eager :includes. Closes #9640.Jeremy Kemper2008-01-199-15/+351
* Support aggregations in finder conditions. Closes #10572.Jeremy Kemper2008-01-194-1/+244
* Remove dead code. Closes #10698 [garru]Jeremy Kemper2008-01-191-5/+0
* Extract ActiveSupport::Callbacks from Active Record, test case setup and tear...Jeremy Kemper2008-01-193-127/+38
* Remove table quoting; only pull last_insert_id if there's a primary key.Jeremy Kemper2008-01-191-2/+2
* Organize and clean up the Active Record test suite. Closes #10742.Jeremy Kemper2008-01-181-0/+2
* Fix pathsJeremy Kemper2008-01-1843-203/+203
* Move tests to casesJeremy Kemper2008-01-1868-515/+513
* move schemaJeremy Kemper2008-01-1834-89/+82
* move migrationsJeremy Kemper2008-01-1812-7/+7
* move assets and modelsJeremy Kemper2008-01-1847-48/+47
* Ensure that modifying has_and_belongs_to_many actions clear the query cache. ...Rick Olson2008-01-183-6/+28
* Correct fix for [8647], Closes #6868. [isak]Michael Koziarski2008-01-161-1/+1
* Don't ignore :precision and :scale when adding columns on postgresql. Closes ...Michael Koziarski2008-01-162-2/+12
* Fix issue where Table#references doesn't pass a :null option to a *_type attr...Rick Olson2008-01-113-3/+11
* observed_subclasses gives [] if there are no observed classesJeremy Kemper2008-01-091-1/+1
* Fixtures: removed support for the ancient pre-YAML file format. Closes #10736.Jeremy Kemper2008-01-0814-75/+12
* Ruby 1.9 compat: instance_eval binding to get the record binding instead of a...Jeremy Kemper2008-01-061-1/+1
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-0518-46/+88
* * Continue evolution toward ActiveSupport::TestCase and friends. #10679 [Jos...Jeremy Kemper2008-01-0560-186/+171
* Document that .build doesn't apply to has_many :through associations. Closes ...Jeremy Kemper2008-01-051-1/+1
* Prefer to instantiate fixtures with model classes instead of their names, avo...Jeremy Kemper2008-01-051-13/+14
* Cache fixture model class. References #10677 [nwilmes]Jeremy Kemper2008-01-051-2/+10
* Document that eager loading doesn't work with polymorphic associations. Close...Jeremy Kemper2008-01-041-0/+17
* pdate_all ignores scoped :order and :limit, so post.comments.update_all doesn...Jeremy Kemper2008-01-043-2/+11
* Ruby 1.9 compat: test multibyte chars proxy for 1.8 onlyJeremy Kemper2008-01-041-12/+14
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-032-0/+18
* Ruby 1.9: Forwards compatibility change for fixtures and the new CSV module [...Michael Koziarski2008-01-032-1/+3
* Ruby 1.9 compat: don't use obsolete ParseDateJeremy Kemper2008-01-031-1/+1
* Remove toplevel rubyforgepublisher require for new RakeJeremy Kemper2008-01-031-1/+1
* Added by parameter to increment, decrement, and their bang varieties so you c...David Heinemeier Hansson2008-01-033-10/+30
* Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Clo...Rick Olson2008-01-022-2/+10
* Ruby 1.9 compat: fix two failing tests since String#each has been removed. Cl...Jeremy Kemper2008-01-022-2/+4
* Ruby 1.9 compat: introduce ActiveSupport::FrozenObjectError normalize TypeErr...Jeremy Kemper2007-12-293-9/+9
* Ruby 1.9 compat: workaround module_eval bug. Closes #10641 [Frederick Cheung]Jeremy Kemper2007-12-291-1/+1
* Don't unnecessarily load has_many associations in after_update callbacks. Cl...Rick Olson2007-12-283-6/+42
* Ruby 1.9 compat: introduce instance_variable_names. Closes #10630 [Frederick ...Jeremy Kemper2007-12-281-1/+1
* Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka]Jeremy Kemper2007-12-281-1/+1
* Ruby 1.9 compat: calculations don't assume array implementation of ordered ha...Jeremy Kemper2007-12-271-1/+2
* Ruby 1.9 compat: don't modify iterator target within blockJeremy Kemper2007-12-272-41/+48
* Ruby 1.9 compat: attribute methodsJeremy Kemper2007-12-272-3/+4
* Remove leaky unused signal handler for transactions.Jeremy Kemper2007-12-221-2/+0
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-2215-237/+282
* Ruby 1.9 compat: Fixtures inherits Hash instead of YAML::Omap since it's now ...Jeremy Kemper2007-12-221-2/+2
* Ruby 1.9 compat: Class#subclasses is now protectedJeremy Kemper2007-12-221-1/+1
* Eager belongs_to :include infers the foreign key from the association name ra...Jeremy Kemper2007-12-214-4/+11
* Benchmark logs for any level below or equal to the one specified, rather than...Jeremy Kemper2007-12-212-4/+57
* SQLite: fix rename_ and remove_column for columns with unique indexes. Closes...Jeremy Kemper2007-12-203-6/+53
* add passing test for Test::Unit subclasses running #setup properly [brynary]Rick Olson2007-12-191-0/+24