intColumn method

  1. @override
IntColumn intColumn(
  1. String name, {
  2. bool allowNull = false,
  3. bool unique = false,
  4. Object? defaultValue,
})
override

Implementation

@override
IntColumn intColumn(String name, {bool allowNull = false, bool unique = false, Object? defaultValue}) {
  return new SqliteInteger(name, unique: unique, allowNull: allowNull, defaultValue: defaultValue);
}