diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:31:33 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:31:33 -0700 |
commit | fc8f0a85b5c6869aed3f8d05b15c6b014deb054f (patch) | |
tree | 3a0112e282ab470d1dcc5abec442550c63376383 /railties | |
parent | 1394c5447a8c27ab654556595468b7a0376c0cc9 (diff) | |
download | rails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.tar.gz rails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.tar.bz2 rails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.zip |
Add link to AR Validations and Callbacks to further explain validations
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/getting_started.textile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index d4bb55b5ba..1f1976393f 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -705,7 +705,8 @@ end These changes will ensure that all posts have a name and a title, and that the title is at least five characters long. Rails can validate a variety of conditions in a model, including the presence or uniqueness of columns, their -format, and the existence of associated objects. +format, and the existence of associated objects. Validations are covered in detail +in "Active Record Validations and Callbacks":active_record_validations_callbacks.html#validations-overview h4. Using the Console |