SmallintColumn constructor

SmallintColumn(
  1. String name, {
  2. String? ref,
  3. bool isKey = false,
})

Implementation

SmallintColumn(
  super.name, {
  super.ref,
  super.isKey,
}) : super(
        ddl: 'SMALLINT',
        type: Type.smallInteger,
      );