deleteWhere method

Deletes all rows matching the where expression.

Implementation

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