Back

validatesUniquenessOf()

Validates that the value of the specified property is unique in the database table. Useful for ensuring that two users can't sign up to a website with identical usernames for example. When a new record is created, a check is made to make sure that no record already exists in the database table with the given value for the specified property. When the record is updated, the same check is made but disregarding the record itself.

Name Type Required Default Description
properties string No Name of property or list of property names to validate against (can also be called with the property argument).
message string No [property] has already been taken Supply a custom error message here to override the built-in one.
when string No onSave Pass in onCreate or onUpdate to limit when this validation occurs (by default validation will occur on both create and update, i.e. onSave).
allowBlank boolean No false If set to true, validation will be skipped if the property value is an empty string or doesn't exist at all. This is useful if you only want to run this validation after it passes the validatesPresenceOf test, thus avoiding duplicate error messages if it doesn't.
scope string No One or more properties by which to limit the scope of the uniqueness constraint.
condition string No String expression to be evaluated that decides if validation will be run (if the expression returns true validation will run).
unless string No String expression to be evaluated that decides if validation will be run (if the expression returns false validation will run).
includeSoftDeletes boolean No true Set to true to include soft-deleted records in the queries that this method runs.
1. Ensure that usernames are unique across all users
validatesUniquenessOf(
    property="username",
    message="Sorry, that username is already taken."
);

2. Ensure that email addresses are unique
validatesUniquenessOf(
    property="emailAddress",
    message="This email has already been registered."
);

3. Allow the same username in different accounts but unique within an account
validatesUniquenessOf(
    property="username",
    scope="accountId",
    message="This username is already used in this account."
);

4. Only enforce uniqueness if the user is active
validatesUniquenessOf(
    property="username",
    condition="this.isActive",
    message="Active users must have a unique username."
);

5. Skip uniqueness check if the field is blank
validatesUniquenessOf(
    property="nickname",
    allowBlank=true,
    message="Nickname must be unique if supplied."
);
Copied!