bigInteger method

ColumnDefinition bigInteger(
  1. String name
)

Big Integer (BIGINT)

Implementation

ColumnDefinition bigInteger(String name) {
  final col = ColumnDefinition(name, 'BIGINT');
  columns.add(col);
  return col;
}