| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge docrails: | Pratik Naik | 2008-05-09 | 1 | -69/+86 |
* | Base#instantiate_time_object: eliminate check for Time.zone, since we can ass... | gbuesing | 2008-05-08 | 1 | -1/+1 |
* | Added AbstractAdapter#table_exists? and made AbstractAdapter#table implementa... | Tarmo Tänav | 2008-05-07 | 1 | -12/+1 |
* | Improve documentation coverage and markup | Xavier Noria | 2008-05-02 | 1 | -36/+32 |
* | Added block-setting of attributes for Base.create like Base.new already has (... | David Heinemeier Hansson | 2008-04-30 | 1 | -2/+14 |
* | Note that allow_concurrency = true means you need to verify_active_connection... | Jeremy Kemper | 2008-04-28 | 1 | -1/+3 |
* | Let Base.all use conditions etc like first/last | David Heinemeier Hansson | 2008-04-28 | 1 | -0/+6 |
* | Remove old :limit removal code from find_initial, logic is now handled in the... | Aliaksey Kandratsenka | 2008-04-27 | 1 | -1/+1 |
* | Ensure that respond_to? considers dynamic finder methods. Closes #11538. [flo... | Pratik Naik | 2008-04-06 | 1 | -2/+17 |
* | Improve documentation. | Pratik Naik | 2008-04-05 | 1 | -0/+5 |
* | Partial updates include only unsaved attributes. Off by default; set YourClas... | Jeremy Kemper | 2008-03-31 | 1 | -4/+4 |
* | Switched to UTC-timebased version numbers for migrations and the schema. This... | David Heinemeier Hansson | 2008-03-28 | 1 | -1/+1 |
* | Typo fix in documentation from [9090] References #11422 | Michael Koziarski | 2008-03-26 | 1 | -1/+1 |
* | Fixed that ActiveRecord#Base.find_or_create/initialize would not honor attr_p... | David Heinemeier Hansson | 2008-03-25 | 1 | -4/+12 |
* | Added ActiveRecord#Base.all/first/last as aliases for find(:all/:first/:last)... | David Heinemeier Hansson | 2008-03-24 | 1 | -0/+12 |
* | Fix merging blank conditions. Closes #10764 [mcmire, cavalle] | Jeremy Kemper | 2008-03-23 | 1 | -8/+21 |
* | Migrations: create_table supports primary_key_prefix_type. Closes #10314. | Jeremy Kemper | 2008-03-18 | 1 | -3/+8 |
* | Docfix (closes #11309) [thechrisoshow] | David Heinemeier Hansson | 2008-03-13 | 1 | -0/+6 |
* | Fixed that scoped joins would not always be respected (closes #6821) [Theory/... | David Heinemeier Hansson | 2008-03-13 | 1 | -7/+8 |
* | Added ActiveRecord::Base.find(:last) (closes #11338) [miloops] | David Heinemeier Hansson | 2008-03-12 | 1 | -1/+38 |
* | Add warning in documentation for increment!, decrement! and toggle! methods. ... | Pratik Naik | 2008-03-11 | 1 | -0/+3 |
* | Fix edge case with colons in times interpreted as bind variables by requiring... | Jeremy Kemper | 2008-02-27 | 1 | -1/+1 |
* | Correct typo in before_type_cast code. Closes #11165 [amishyn] | Michael Koziarski | 2008-02-19 | 1 | -1/+1 |
* | ActiveRecord::Base#instantiate_time_object only uses Time.zone when Base.time... | Geoff Buesing | 2008-02-16 | 1 | -2/+2 |
* | Avoid repeated calls to Base#connection. Closes #11111 [adymo] | Michael Koziarski | 2008-02-14 | 1 | -2/+4 |
* | Remove options from the attributes method, tidy up the implementation. Close... | Michael Koziarski | 2008-02-13 | 1 | -22/+5 |
* | Avoid cloning in Base#attributes_before_typecast. Closes #11077 [juanjo.bazan] | Michael Koziarski | 2008-02-11 | 1 | -3/+7 |
* | Multiparameter attributes for time columns fail over to DateTime when out of ... | Geoff Buesing | 2008-02-10 | 1 | -2/+1 |
* | TimeZone#new renamed #local, so that new TimeWithZone instances can be create... | Geoff Buesing | 2008-02-10 | 1 | -1/+1 |
* | Avoid cloning in Base#attributes. Closes #11047 [juanjo.bazan] | Michael Koziarski | 2008-02-08 | 1 | -7/+10 |
* | Add Time Zone support to ActiveRecord, and config.time_zone property for spec... | Rick Olson | 2008-02-06 | 1 | -4/+8 |
* | When multiparameter date assignment fails due to an invalid date, fall back t... | Jeremy Kemper | 2008-02-02 | 1 | -1/+17 |
* | Avoid Base#attributes when saving / creating records. Closes #10978 [adymo] | Michael Koziarski | 2008-02-01 | 1 | -3/+3 |
* | Introduce preload query strategy for eager :includes. Closes #9640. | Jeremy Kemper | 2008-01-19 | 1 | -3/+10 |
* | Support aggregations in finder conditions. Closes #10572. | Jeremy Kemper | 2008-01-19 | 1 | -0/+56 |
* | More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ... | Jeremy Kemper | 2008-01-05 | 1 | -1/+1 |
* | pdate_all ignores scoped :order and :limit, so post.comments.update_all doesn... | Jeremy Kemper | 2008-01-04 | 1 | -2/+2 |
* | Moved the caching stores from ActionController::Caching::Fragments::* to Acti... | David Heinemeier Hansson | 2008-01-03 | 1 | -0/+16 |
* | Added by parameter to increment, decrement, and their bang varieties so you c... | David Heinemeier Hansson | 2008-01-03 | 1 | -10/+10 |
* | Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Clo... | Rick Olson | 2008-01-02 | 1 | -2/+8 |
* | Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka] | Jeremy Kemper | 2007-12-28 | 1 | -1/+1 |
* | Ruby 1.9 compat: don't modify iterator target within block | Jeremy Kemper | 2007-12-27 | 1 | -3/+6 |
* | Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ... | Jeremy Kemper | 2007-12-22 | 1 | -14/+18 |
* | Benchmark logs for any level below or equal to the one specified, rather than... | Jeremy Kemper | 2007-12-21 | 1 | -4/+4 |
* | Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas... | Jeremy Kemper | 2007-12-18 | 1 | -1/+0 |
* | Remove references to nonexistent :joins documentation. Closes #10498 [tpope] | Marcel Molina | 2007-12-13 | 1 | -4/+3 |
* | Base.exists? doesn't rescue exceptions to avoid hiding SQL errors. Closes #10... | Jeremy Kemper | 2007-12-11 | 1 | -3/+2 |
* | Update destroy_all and delete_all documentation to better describe their trad... | Jeremy Kemper | 2007-12-10 | 1 | -4/+27 |
* | Document Active Record exceptions. Closes #10444. | Jeremy Kemper | 2007-12-10 | 1 | -91/+152 |
* | Remove unused ConnectionFailed exception | Jeremy Kemper | 2007-12-10 | 1 | -2/+0 |