bigInteger method

ColumnBuilder bigInteger(
  1. String name, {
  2. ColumnMutation mutation = ColumnMutation.add,
  3. bool unsigned = false,
})

Adds a big integer column.

Implementation

ColumnBuilder bigInteger(
  String name, {
  ColumnMutation mutation = ColumnMutation.add,
  bool unsigned = false,
}) {
  final builder = column(
    name,
    const ColumnType.bigInteger(),
    mutation: mutation,
  );
  return unsigned ? builder.unsigned() : builder;
}