bigIncrements method

ColumnDefinition bigIncrements(
  1. String name
)

Add a big auto-incrementing column

Implementation

ColumnDefinition bigIncrements(String name) {
  final definition = ColumnDefinition(this, name, 'BIGINT')
      .length(20)
      .unsigned()
      .autoIncrement()
      .notNull();
  return definition;
}