Future<int> delete(int id) async { return await _db.delete( tableName, where: 'id = ?', whereArgs: [id], ); }