fix: correct sql output format in CRM patch (#32213)

diff --git a/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py b/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py
index 032aecc..ec72527 100644
--- a/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py
+++ b/erpnext/patches/v14_0/migrate_existing_lead_notes_as_per_the_new_format.py
@@ -12,7 +12,7 @@
 			frappe.qb.from_(dt)
 			.select(dt.name, dt.notes, dt.modified_by, dt.modified)
 			.where(dt.notes.isnotnull() & dt.notes != "")
-		).run()
+		).run(as_dict=True)
 
 		for d in records:
 			if strip_html(cstr(d.notes)).strip():