aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_record_validations_callbacks.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-03-27 23:50:39 +0200
committerXavier Noria <fxn@hashref.com>2011-03-27 23:50:39 +0200
commiteea6a65488e3f590d4d9cd922f54febb151799ad (patch)
treea3801ac70aa28d0c60cdc369e4d22b6c5014bbe5 /railties/guides/source/active_record_validations_callbacks.textile
parent884e39f69eb8012b7ce455747d1b8aa7b34d83d3 (diff)
parent6194c6d13b1349228baa85bf19b4f502011365a4 (diff)
downloadrails-eea6a65488e3f590d4d9cd922f54febb151799ad.tar.gz
rails-eea6a65488e3f590d4d9cd922f54febb151799ad.tar.bz2
rails-eea6a65488e3f590d4d9cd922f54febb151799ad.zip
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'railties/guides/source/active_record_validations_callbacks.textile')
-rw-r--r--railties/guides/source/active_record_validations_callbacks.textile2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/active_record_validations_callbacks.textile b/railties/guides/source/active_record_validations_callbacks.textile
index e5349d546c..514d0322b9 100644
--- a/railties/guides/source/active_record_validations_callbacks.textile
+++ b/railties/guides/source/active_record_validations_callbacks.textile
@@ -84,6 +84,7 @@ The following methods skip validations, and will save the object to the database
* +toggle!+
* +update_all+
* +update_attribute+
+* +update_column+
* +update_counters+
Note that +save+ also has the ability to skip validations if passed +:validate => false+ as argument. This technique should be used with caution.
@@ -993,6 +994,7 @@ Just as with validations, it's also possible to skip callbacks. These methods sh
* +increment+
* +increment_counter+
* +toggle+
+* +update_column+
* +update_all+
* +update_counters+