mutable method

SchemaUtils mutable()

Add MUTABLE modifier

Indicates that the column value can change after creation.

Implementation

SchemaUtils mutable() {
  _constraints.add("MUTABLE");
  return this;
}