unique method

SchemaUtils unique()

Add UNIQUE constraint

Ensures all values in the column are unique across the table.

Implementation

SchemaUtils unique() {
  _constraints.add("UNIQUE");
  return this;
}