immutable method

SchemaUtils immutable()

Add IMMUTABLE modifier

Indicates that the column value never changes after creation.

Implementation

SchemaUtils immutable() {
  _constraints.add("IMMUTABLE");
  return this;
}