Deletes a particular Tracked Donation from the database
Future<int> delete(int id) async { return await db.delete(tableTrackedDonations, where: '$columnId = ?', whereArgs: [id]); }