virtual method

SchemaUtils virtual()

Add VIRTUAL modifier

Indicates that the column value is computed and not stored. Useful for computed columns.

Implementation

SchemaUtils virtual() {
  _constraints.add("VIRTUAL");
  return this;
}