rows method

SchemaUtils rows(
  1. int rows
)

Add ROWS modifier

Sets the estimated number of rows returned by the column function. rows should be a positive number.

Implementation

SchemaUtils rows(int rows) {
  _constraints.add("ROWS $rows");
  return this;
}