aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Allow conditions on multiple tables to be specified using hash.Pratik Naik2008-06-281-9/+15
* Include cache key in ModelNameJeremy Kemper2008-06-241-4/+4
* Fix column collision with named_scope and :joins. [#46 state:resolved]Mark Catley2008-06-221-1/+1
* Named bind variables can now be used with postgresql-style typecastsTarmo Tänav2008-06-221-3/+4
* Make Base.merge_conditions publicJeremy Kemper2008-06-171-14/+14
* Silence scope resolution warningsJeremy Kemper2008-06-111-4/+6
* Simplify ActiveRecord::Base#update_attributePratik Naik2008-06-071-4/+4
* Generate less garbage when expanding range bind variables in conditionsJeremy Kemper2008-06-061-3/+8
* Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...Joshua Peek2008-06-031-1/+1
* Add ActiveRecord::Base.sti_name that checks ActiveRecord::Base#store_full_sti...rick2008-05-311-4/+12
* Ensure :select passed in options overrides the one from the scope. [#239 stat...Andrew White2008-05-291-1/+1
* Merge docrails.Pratik Naik2008-05-251-101/+113
* Prefer string core_ext inflector methods over directly accessing Inflector.Joshua Peek2008-05-141-22/+22
* Add ActiveRecord option to store the full class name on STI's type column, al...Rodrigo Kochenburger2008-05-131-3/+7
* Remove AR::Base#attributes argument. [#52 state:resolved]Frederick Cheung2008-05-121-1/+1
* Fix blank conditions on AssociationCollection#find. [#104 state:resolved]Jonathan Viney2008-05-111-0/+2
* Merge docrails:Pratik Naik2008-05-091-69/+86
* Base#instantiate_time_object: eliminate check for Time.zone, since we can ass...gbuesing2008-05-081-1/+1
* Added AbstractAdapter#table_exists? and made AbstractAdapter#table implementa...Tarmo Tänav2008-05-071-12/+1
* Improve documentation coverage and markupXavier Noria2008-05-021-36/+32
* Added block-setting of attributes for Base.create like Base.new already has (...David Heinemeier Hansson2008-04-301-2/+14
* Note that allow_concurrency = true means you need to verify_active_connection...Jeremy Kemper2008-04-281-1/+3
* Let Base.all use conditions etc like first/lastDavid Heinemeier Hansson2008-04-281-0/+6
* Remove old :limit removal code from find_initial, logic is now handled in the...Aliaksey Kandratsenka2008-04-271-1/+1
* Ensure that respond_to? considers dynamic finder methods. Closes #11538. [flo...Pratik Naik2008-04-061-2/+17
* Improve documentation.Pratik Naik2008-04-051-0/+5
* Partial updates include only unsaved attributes. Off by default; set YourClas...Jeremy Kemper2008-03-311-4/+4
* Switched to UTC-timebased version numbers for migrations and the schema. This...David Heinemeier Hansson2008-03-281-1/+1
* Typo fix in documentation from [9090] References #11422Michael Koziarski2008-03-261-1/+1
* Fixed that ActiveRecord#Base.find_or_create/initialize would not honor attr_p...David Heinemeier Hansson2008-03-251-4/+12
* Added ActiveRecord#Base.all/first/last as aliases for find(:all/:first/:last)...David Heinemeier Hansson2008-03-241-0/+12
* Fix merging blank conditions. Closes #10764 [mcmire, cavalle]Jeremy Kemper2008-03-231-8/+21
* Migrations: create_table supports primary_key_prefix_type. Closes #10314.Jeremy Kemper2008-03-181-3/+8
* Docfix (closes #11309) [thechrisoshow]David Heinemeier Hansson2008-03-131-0/+6
* Fixed that scoped joins would not always be respected (closes #6821) [Theory/...David Heinemeier Hansson2008-03-131-7/+8
* Added ActiveRecord::Base.find(:last) (closes #11338) [miloops]David Heinemeier Hansson2008-03-121-1/+38
* Add warning in documentation for increment!, decrement! and toggle! methods. ...Pratik Naik2008-03-111-0/+3
* Fix edge case with colons in times interpreted as bind variables by requiring...Jeremy Kemper2008-02-271-1/+1
* Correct typo in before_type_cast code. Closes #11165 [amishyn]Michael Koziarski2008-02-191-1/+1
* ActiveRecord::Base#instantiate_time_object only uses Time.zone when Base.time...Geoff Buesing2008-02-161-2/+2
* Avoid repeated calls to Base#connection. Closes #11111 [adymo]Michael Koziarski2008-02-141-2/+4
* Remove options from the attributes method, tidy up the implementation. Close...Michael Koziarski2008-02-131-22/+5
* Avoid cloning in Base#attributes_before_typecast. Closes #11077 [juanjo.bazan]Michael Koziarski2008-02-111-3/+7
* Multiparameter attributes for time columns fail over to DateTime when out of ...Geoff Buesing2008-02-101-2/+1
* TimeZone#new renamed #local, so that new TimeWithZone instances can be create...Geoff Buesing2008-02-101-1/+1
* Avoid cloning in Base#attributes. Closes #11047 [juanjo.bazan]Michael Koziarski2008-02-081-7/+10
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-061-4/+8
* When multiparameter date assignment fails due to an invalid date, fall back t...Jeremy Kemper2008-02-021-1/+17
* Avoid Base#attributes when saving / creating records. Closes #10978 [adymo]Michael Koziarski2008-02-011-3/+3
* Introduce preload query strategy for eager :includes. Closes #9640.Jeremy Kemper2008-01-191-3/+10