diff options
author | Xavier Noria <fxn@hashref.com> | 2011-03-27 23:49:11 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-03-27 23:49:11 +0200 |
commit | 6194c6d13b1349228baa85bf19b4f502011365a4 (patch) | |
tree | 3a41636ecc8304a7e9be25fc59a70899130eda76 /railties/guides | |
parent | 738e906a021885a0cc864cf781b4cb54a973ef21 (diff) | |
download | rails-6194c6d13b1349228baa85bf19b4f502011365a4.tar.gz rails-6194c6d13b1349228baa85bf19b4f502011365a4.tar.bz2 rails-6194c6d13b1349228baa85bf19b4f502011365a4.zip |
AR validations and callbacks guide: put update_attribute back
Diffstat (limited to 'railties/guides')
-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 6c80ec39f2..514d0322b9 100644 --- a/railties/guides/source/active_record_validations_callbacks.textile +++ b/railties/guides/source/active_record_validations_callbacks.textile @@ -83,6 +83,7 @@ The following methods skip validations, and will save the object to the database * +increment_counter+ * +toggle!+ * +update_all+ +* +update_attribute+ * +update_column+ * +update_counters+ @@ -964,6 +965,7 @@ The following methods trigger callbacks: * +save(false)+ * +toggle!+ * +update+ +* +update_attribute+ * +update_attributes+ * +update_attributes!+ * +valid?+ |