cost method

SchemaUtils cost(
  1. double cost
)

Add COST modifier

Sets the estimated execution cost for the column function. cost should be a positive number.

Implementation

SchemaUtils cost(double cost) {
  _constraints.add("COST $cost");
  return this;
}