1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add link to AR Validations and Callbacks to further explain validations

This commit is contained in:
Jason Noble 2011-11-13 01:31:33 -07:00
parent 1394c5447a
commit fc8f0a85b5

View file

@ -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