unique method
Add UNIQUE constraint
Ensures all values in the column are unique across the table.
Implementation
SchemaUtils unique() {
_constraints.add("UNIQUE");
return this;
}
Add UNIQUE constraint
Ensures all values in the column are unique across the table.
SchemaUtils unique() {
_constraints.add("UNIQUE");
return this;
}