smallInt method

ColumnDefinition smallInt(
  1. String name
)

Create a small integer column

Implementation

ColumnDefinition smallInt(String name) {
  return ColumnDefinition(this, name, 'SMALLINT').length(5);
}