check if Data Migration Plan exists before deleting (#15368)

This commit is contained in:
Zarrar 2018-09-09 19:19:13 +05:30 committed by Nabin Hait
parent 3cc77b52e7
commit 68000c66fc

View File

@ -6,6 +6,7 @@ def execute():
for dt, dn in (("Page", "Hub"), ("DocType", "Hub Settings"), ("DocType", "Hub Category")):
frappe.delete_doc(dt, dn, ignore_missing=True)
if frappe.db.exists("DocType", "Data Migration Plan"):
data_migration_plans = frappe.get_all("Data Migration Plan", filters={"module": 'Hub Node'})
for plan in data_migration_plans:
plan_doc = frappe.get_doc("Data Migration Plan", plan.name)
@ -14,4 +15,3 @@ def execute():
frappe.delete_doc("Data Migration Plan", plan.name)
frappe.delete_doc("Module Def", "Hub Node", ignore_missing=True)