deleteWhere method

Implementation

Future<List<DatabaseMigrationVersion>> deleteWhere(
  _i1.Session session, {
  required _i1.WhereExpressionBuilder<DatabaseMigrationVersionTable> where,
  _i1.Transaction? transaction,
}) async {
  return session.db.deleteWhere<DatabaseMigrationVersion>(
    where: where(DatabaseMigrationVersion.t),
    transaction: transaction,
  );
}