aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Support aggregations in finder conditions. Closes #10572.Jeremy Kemper2008-01-191-0/+56
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-1/+1
* pdate_all ignores scoped :order and :limit, so post.comments.update_all doesn...Jeremy Kemper2008-01-041-2/+2
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-031-0/+16
* Added by parameter to increment, decrement, and their bang varieties so you c...David Heinemeier Hansson2008-01-031-10/+10
* Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Clo...Rick Olson2008-01-021-2/+8
* Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka]Jeremy Kemper2007-12-281-1/+1
* Ruby 1.9 compat: don't modify iterator target within blockJeremy Kemper2007-12-271-3/+6
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-14/+18
* Benchmark logs for any level below or equal to the one specified, rather than...Jeremy Kemper2007-12-211-4/+4
* Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas...Jeremy Kemper2007-12-181-1/+0
* Remove references to nonexistent :joins documentation. Closes #10498 [tpope]Marcel Molina2007-12-131-4/+3
* Base.exists? doesn't rescue exceptions to avoid hiding SQL errors. Closes #10...Jeremy Kemper2007-12-111-3/+2
* Update destroy_all and delete_all documentation to better describe their trad...Jeremy Kemper2007-12-101-4/+27
* Document Active Record exceptions. Closes #10444.Jeremy Kemper2007-12-101-91/+152
* Remove unused ConnectionFailed exceptionJeremy Kemper2007-12-101-2/+0
* Axe outdated :ar_joins commentaryJeremy Kemper2007-12-101-7/+0
* Fixed that the truncation of strings longer than 50 chars should use inspect ...David Heinemeier Hansson2007-12-061-1/+1
* More complete documentation for find_by_sql. Closes #7912 [fearoffish]Marcel Molina2007-12-051-3/+23
* Document API for exists?'s parameter and provide examples of usage. Closes #7...Marcel Molina2007-12-051-3/+12
* Document API for create's attributes parameter and provide examples. Closes #...Marcel Molina2007-12-051-2/+11
* Documentation for find incorrectly omits the :conditions option from various ...Marcel Molina2007-12-051-4/+4
* Document options and add examples for update. Closes #7985 [fearoffish]Marcel Molina2007-12-051-6/+10
* Document options and add examples for delete. Closes #7986 [fearoffish]Marcel Molina2007-12-051-2/+18
* Document options and add examples for destroy. Closes #7988 [fearoffish]Marcel Molina2007-12-051-2/+19
* Document options and add examples for update_all. Closes #7990 [fearoffish]Marcel Molina2007-12-051-5/+20