softDeletesDatetime method

void softDeletesDatetime({
  1. String columnName = 'deleted_at',
  2. int precision = 3,
})

Implementation

void softDeletesDatetime({
  String columnName = 'deleted_at',
  int precision = 3,
}) {
  dateTime(columnName, precision: precision).nullable();
}