Future<void> deletePendingUpdateUms(int id) async { final db = await database; await db.delete('pending_ums', where: 'id = ?', whereArgs: [id]); }