diff options
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/lib/active_record/validations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/validations.rb b/activerecord/lib/active_record/validations.rb index 7770d805b1..c49684dceb 100755 --- a/activerecord/lib/active_record/validations.rb +++ b/activerecord/lib/active_record/validations.rb @@ -610,7 +610,7 @@ module ActiveRecord # # Because this check is performed outside the database there is still a chance that duplicate values # will be inserted in two parallel transactions. To guarantee against this you should create a - # unique index on the field. See +create_index+ for more information. + # unique index on the field. See +add_index+ for more information. # # Configuration options: # * <tt>message</tt> - Specifies a custom error message (default is: "has already been taken") |