matrix method

SchemaUtils matrix(
  1. String name
)

Add a matrix column

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

Implementation

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