fix(patch): to migrate properly in post section (#38045)

diff --git a/erpnext/patches/v15_0/migrate_payment_request_status.py b/erpnext/patches/v15_0/migrate_payment_request_status.py
index 746a67b..9f0de56 100644
--- a/erpnext/patches/v15_0/migrate_payment_request_status.py
+++ b/erpnext/patches/v15_0/migrate_payment_request_status.py
@@ -7,9 +7,7 @@
 	Change Inward Payment Requests from statut 'Initiated' to correct status 'Requested'.
 	Status 'Initiated' is reserved for Outward Payment Requests and was a semantic error in previour versions.
 	"""
-
-	if frappe.reload_doc("accounts", "doctype", "Payment Request"):
-		so = frappe.qb.DocType("Payment Request")
-		frappe.qb.update(so).set(so.status, "Requested").where(
-			so.payment_request_type == "Inward"
-		).where(so.status == "Initiated").run()
+	so = frappe.qb.DocType("Payment Request")
+	frappe.qb.update(so).set(so.status, "Requested").where(so.payment_request_type == "Inward").where(
+		so.status == "Initiated"
+	).run()