readOnly method

SchemaUtils readOnly()

Add READONLY modifier

Makes the column read-only (cannot be updated).

Implementation

SchemaUtils readOnly() {
  _constraints.add("READONLY");
  return this;
}