indexed method
Add INDEX hint
Suggests that an index should be created for this column. This is a hint to the database optimizer.
Implementation
SchemaUtils indexed() {
_constraints.add("INDEXED");
return this;
}
Add INDEX hint
Suggests that an index should be created for this column. This is a hint to the database optimizer.
SchemaUtils indexed() {
_constraints.add("INDEXED");
return this;
}