bigInteger method
ColumnBuilder
bigInteger(
- String name, {
- ColumnMutation mutation = ColumnMutation.add,
- 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;
}