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