diff options
author | Xavier Noria <fxn@hashref.com> | 2011-03-27 23:50:39 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-03-27 23:50:39 +0200 |
commit | eea6a65488e3f590d4d9cd922f54febb151799ad (patch) | |
tree | a3801ac70aa28d0c60cdc369e4d22b6c5014bbe5 /railties/guides/source/active_record_validations_callbacks.textile | |
parent | 884e39f69eb8012b7ce455747d1b8aa7b34d83d3 (diff) | |
parent | 6194c6d13b1349228baa85bf19b4f502011365a4 (diff) | |
download | rails-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.textile | 2 |
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+ |