method
validate_on_update
v1.1.6 -
Show latest stable
- Class:
Person
validate_on_update()protected
No documentation available.
# File activerecord/examples/validation.rb, line 52
def validate_on_update
if attribute_present?("name") && Person.name_exists?(name, id)
errors.add("name", "is already taken by another person")
end
end