ellipse method

SchemaUtils ellipse(
  1. String name
)

Add an ellipse column

Creates a text column for storing ellipse data. Returns a SchemaUtils instance for adding constraints.

Implementation

SchemaUtils ellipse(String name) {
  final column = text(name);
  _columns[name] = column;
  return column;
}