hidden method

SchemaUtils hidden()

Add HIDDEN modifier

Makes the column hidden from SELECT * queries.

Implementation

SchemaUtils hidden() {
  _constraints.add("HIDDEN");
  return this;
}