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