aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Noble <github+jasonn@jasonnoble.org>2011-11-13 01:31:33 -0700
committerJason Noble <github+jasonn@jasonnoble.org>2011-11-13 01:31:33 -0700
commitfc8f0a85b5c6869aed3f8d05b15c6b014deb054f (patch)
tree3a0112e282ab470d1dcc5abec442550c63376383
parent1394c5447a8c27ab654556595468b7a0376c0cc9 (diff)
downloadrails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.tar.gz
rails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.tar.bz2
rails-fc8f0a85b5c6869aed3f8d05b15c6b014deb054f.zip
Add link to AR Validations and Callbacks to further explain validations
-rw-r--r--railties/guides/source/getting_started.textile3
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