aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-5/+15
* Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]Michael Koziarski2006-09-041-10/+23
* Nested subclasses are not prefixed with the parent class' table_name since th...Jeremy Kemper2006-08-251-7/+16
* Clashing type columns due to a sloppy join shouldn't wreck single-table inher...Jeremy Kemper2006-08-241-11/+22
* Nested classes are given table names prefixed by the singular form of the par...Jeremy Kemper2006-08-161-6/+20
* Remove ActiveRecord::Base.reset since Dispatcher doesn't use it anymore. [Ri...Rick Olson2006-08-091-4/+0
* Document find's :from option. Closes #5762. [andrew@redlinesoftware.com]Marcel Molina2006-08-091-0/+2
* New dependencies implementationNicholas Seckar2006-08-081-2/+2
* Refactor ActiveRecord::Base.reset_subclasses to #reset, and add global observ...Rick Olson2006-08-061-0/+4
* Fixed that default timezones for new / initialize should uphold utc setting (...David Heinemeier Hansson2006-08-051-1/+1
* The exists? class method should treat a string argument as an id rather than ...Jeremy Kemper2006-08-031-3/+15
* Added support for conditions on Base.exists? (closes #5689) [josh@joshpeek.com]David Heinemeier Hansson2006-08-031-2/+5
* r4889@ks: jeremy | 2006-07-31 20:27:15 -0700Jeremy Kemper2006-08-011-6/+6
* r4880@ks: jeremy | 2006-07-30 23:52:59 -0700Jeremy Kemper2006-07-311-1/+2
* r4854@ks: jeremy | 2006-07-30 00:59:18 -0700Jeremy Kemper2006-07-311-9/+5
* occured -> occurred. Closes #5559.Jeremy Kemper2006-07-101-1/+1
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-1/+1
* Rollback [4584], bad test. Reopens #3819.Jeremy Kemper2006-07-081-1/+1
* Don't modify options parameters in-place. Closes #3819.Jeremy Kemper2006-07-081-1/+1
* find_one uses find_every.first instead of find_initial since its primary key ...Jeremy Kemper2006-07-071-1/+4
* revert ActiveRecord equality change. Closes #5596Rick Olson2006-07-051-3/+2
* Fixed a few Oracle issues: Allows Oracle's odd date handling to still work co...David Heinemeier Hansson2006-07-051-2/+3
* Minor tweak to improve performance of ActiveRecord::Base#to_paramNicholas Seckar2006-07-031-1/+1
* Added find_or_initialize_by_X which works like find_or_create_by_X but doesn'...Sam Stephenson2006-06-201-2/+13
* r4664@asus: jeremy | 2006-06-19 18:55:36 -0700Jeremy Kemper2006-06-201-2/+5
* r4644@asus: jeremy | 2006-06-16 14:57:03 -0700Jeremy Kemper2006-06-191-9/+28
* Change AR::Base#to_param to return a String instead of a Fixnum. Closes #5320.Nicholas Seckar2006-06-191-2/+2
* Use explicit delegation instead of method aliasing for AR::Base.to_param -> A...Jamis Buck2006-06-051-1/+4
* Refactored ActiveRecord::Base.to_xml to become a delegate for XmlSerializer, ...David Heinemeier Hansson2006-06-041-264/+1
* Added simple hash conditions to find that'll just convert hash to an AND-base...David Heinemeier Hansson2006-06-031-9/+39
* Fixed that :includes merged from with_scope won't cause the same association ...David Heinemeier Hansson2006-06-031-1/+1
* to_xml fixes, features, and speedup. Closes #4989.Jeremy Kemper2006-06-031-27/+183
* Records and arrays of records are bound as quoted ids.Jeremy Kemper2006-06-011-3/+3
* Fixed that Base.find :all, :conditions => [ "id IN (?)", collection ] would f...David Heinemeier Hansson2006-06-011-1/+5
* Allow AR::Base#to_xml to include methods too. Closes #4921. [johan@textdrive....Marcel Molina2006-04-291-0/+16
* Add support for FrontBase (http://www.frontbase.com/) with a new adapter than...Marcel Molina2006-04-271-4/+4
* Fix syntax error in documentation. Closes #4679. [mislav@nippur.irb.hr]Marcel Molina2006-04-261-1/+1
* Add support for :order option to with_scope. Closes #3887. [eric.daspet@survo...Marcel Molina2006-04-261-2/+11
* Doc fixDavid Heinemeier Hansson2006-04-181-1/+1
* Fixed that that multiparameter assignment doesn't work with aggregations (clo...David Heinemeier Hansson2006-04-061-1/+1
* Fix type_name_with_module to handle type names that begin with '::'. Closes #...Nicholas Seckar2006-04-061-1/+1
* Stop respond_to? from throwing when instances are created 'irregularly' i.e. ...Michael Koziarski2006-04-061-1/+3
* Changed those private ActiveRecord methods to take optional third argument :a...Rick Olson2006-04-031-7/+8
* Abort broken tighter resolution suppression. Closes #4431Nicholas Seckar2006-04-031-2/+0
* Private ActiveRecord methods add_limit, add_joins, and add_conditions take an...Rick Olson2006-04-011-4/+9
* Doc fix (closes #4515)David Heinemeier Hansson2006-04-011-2/+2
* Fixed that records returned from has_and_belongs_to_many associations with ad...David Heinemeier Hansson2006-04-011-1/+1
* dont merge when you can update (closes #4529) [skaes]David Heinemeier Hansson2006-04-011-2/+2
* Do not implicitly mark recordss of has_many :through as readonly but do mark ...Marcel Molina2006-03-301-2/+2
* to_xml documentation [DHH, Koz]Michael Koziarski2006-03-281-1/+61