aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/dirty_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Change query pattern case insensitiveYasuo Honda2012-09-291-1/+1
* Support for partial inserts.Jon Leighton2012-09-281-0/+25
* Revert "Remove update_attribute."Rafael Mendonça França2012-08-251-1/+11
* Round usec when writing timestamp attribute.kennyj2012-08-211-0/+15
* Do not consider the numeric attribute as changed if the old value isRafael Mendonça França2012-08-021-1/+14
* Deprecate update_column in favor of update_columns.Rafael Mendonça França2012-07-241-1/+1
* Remove unneded tests.Rafael Mendonça França2012-06-141-11/+1
* Remove update_attribute.Steve Klabnik2012-06-141-1/+1
* Add failing test for 3.2.5 datetime attribute regressionEvan Arnold2012-06-041-0/+11
* remove deprecate #update_all usageJon Leighton2012-04-261-2/+2
* A test case for GH #3544 to ensure that a field named field works fineAkira Matsuda2012-02-141-0/+14
* please use ruby -I lib:test path/to/test.rb, or export RUBY_OPTAaron Patterson2011-06-061-1/+1
* Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES...Jon Leighton2011-06-041-1/+1
* Added new #update_column method.Sebastian Martinez2011-03-271-1/+1
* Revert "Removed #update_attribute method. New #update_column method."Sebastian Martinez2011-03-271-3/+2
* Removed #update_attribute method. New #update_column method.Sebastian Martinez2011-03-261-2/+3
* fixing dup regressionsAaron Patterson2010-11-231-4/+4
* Ensure save always updates timestamps when serialized attributes are presentPratik Naik2010-11-021-0/+14
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-7/+7
* Make update_attribute behave as in Rails 2.3 and document the behavior intrin...José Valim2010-08-121-3/+4
* This patch changes update_attribute implementatino so:Neeraj Singh2010-07-081-4/+3
* Use better assertion methods for testingNeeraj Singh2010-05-191-2/+2
* a cloned object no longer mimics changed flags from creator , plus a test cas...Federico Brubacher2010-05-161-0/+9
* Dirty datetime attributes should be aware of time zone info [#3658 state:reso...Kristopher Murata2010-04-081-0/+95
* Hack to keep column metadata queries out of test query countsJeremy Kemper2010-03-151-0/+5
* Replace Model.first(options) with new finder methods inside testsPratik Naik2009-12-271-1/+1
* I added this feature so that a Map of changed fields could be retrievedJosh Sharpe2009-08-311-0/+78
* Serialized attributes should only be saved with partial_updates when the seri...Mike Breen2009-08-091-0/+10
* Added reset_attribute! method to ActiveRecord::AttributeMethods::Dirty which ...Paul Gillard2009-08-041-0/+10
* Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-081-1/+1
* Add support for nested object forms to ActiveRecord and the helpers in Action...Eloy Duran2009-02-011-1/+1
* Fix dirty handling of nullable non-integer numeric columns [#1692 state:resol...Carlos Kozuszko2009-01-161-0/+24
* Fixing bug on ActiveRecord::Dirty#field_changed? for nullable numeric columns...Carlos Kozuszko2009-01-161-1/+1
* Change field_changed? method to handle the case where a nullable integer colu...Ben Symonds2008-12-081-0/+12
* Allow for the dirty tracking to work with the aliased name of aliased attribu...Rich Cavanaugh2008-09-131-0/+13
* Dirty: treat two changes resulting in the original value as being unchanged.Tom Lea2008-08-271-0/+36
* Serialized attributes will now always be saved even with partial_updates turn...Tom Lea2008-08-121-0/+12
* Dirty: recognize when an integer changes from zero to blank. [#433 state:res...Tim Chater2008-06-271-0/+27
* Partial updates don't update lock_version if nothing changed. [#426 state:re...Daniel Morrison2008-06-221-0/+19
* ActiveRecord::Base#reload should clear dirty attributes. [#231 state:resolved]Ryan Bates2008-05-211-0/+8
* Ensure nil to '' doesn't get recorded by dirty for nullable integer columns. ...Pratik Naik2008-05-201-0/+10
* Dirty attributes aren't cleared if save fails. [#174 state:resolved]Xavier Noria2008-05-121-1/+20
* Partial updates play nice with updated_at/on timestampsJeremy Kemper2008-03-311-0/+6
* Partial updates include only unsaved attributes. Off by default; set YourClas...Jeremy Kemper2008-03-311-2/+45
* Dirty typecasts attribute values before comparison, if possible. Closes #1146...Jeremy Kemper2008-03-291-62/+59
* Track changes to unsaved attributesJeremy Kemper2008-03-291-0/+80