text method

SchemaUtils text(
  1. dynamic name
)

Implementation

SchemaUtils text(name) {
  var column = SchemaUtils(" $name TEXT   ");
  _columns[name] = column;

  return column;
}