deleteWhere method

Future<List<DatabaseMigrationVersion>> deleteWhere(
  1. DatabaseAccessor databaseAccessor, {
  2. required WhereExpressionBuilder<DatabaseMigrationVersionTable> where,
  3. Transaction? transaction,
})

Implementation

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