stored method

SchemaUtils stored()

Add STORED modifier

Indicates that the column value should be stored rather than computed. Useful for computed columns.

Implementation

SchemaUtils stored() {
  _constraints.add("STORED");
  return this;
}