DateColumn constructor

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

Implementation

DateColumn(String name, {bool allowNull = false, bool unique = false, Object? defaultValue})
    : super(name, allowNull: allowNull, defaultValue: defaultValue, unique: unique) {
  fieldType = dbType.Date;
}