support method

SchemaUtils support(
  1. String function
)

Add SUPPORT modifier

Specifies the support function for the column. function should be the name of a support function.

Implementation

SchemaUtils support(String function) {
  _constraints.add("SUPPORT $function");
  return this;
}