method

validate_on_update

rails latest stable - Class: Person

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1.2.6) is shown here.

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