indexed method

SchemaUtils indexed()

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;
}