stored method
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;
}
Add STORED modifier
Indicates that the column value should be stored rather than computed. Useful for computed columns.
SchemaUtils stored() {
_constraints.add("STORED");
return this;
}