Future<void> deleteTable({required String tableName}) async { final db = await database; await db.execute('DROP TABLE IF EXISTS $tableName'); }