mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 20:29:09 +00:00
fix(patch): delete stale shopify doctypes (#27313)
This commit is contained in:
@@ -302,3 +302,4 @@ erpnext.patches.v13_0.custom_fields_for_taxjar_integration
|
|||||||
erpnext.patches.v14_0.delete_einvoicing_doctypes
|
erpnext.patches.v14_0.delete_einvoicing_doctypes
|
||||||
erpnext.patches.v13_0.set_operation_time_based_on_operating_cost
|
erpnext.patches.v13_0.set_operation_time_based_on_operating_cost
|
||||||
erpnext.patches.v13_0.validate_options_for_data_field
|
erpnext.patches.v13_0.validate_options_for_data_field
|
||||||
|
erpnext.patches.v14_0.delete_shopify_doctypes
|
||||||
|
|||||||
5
erpnext/patches/v14_0/delete_shopify_doctypes.py
Normal file
5
erpnext/patches/v14_0/delete_shopify_doctypes.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import frappe
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
frappe.delete_doc("DocType", "Shopify Settings", ignore_missing=True)
|
||||||
|
frappe.delete_doc("DocType", "Shopify Log", ignore_missing=True)
|
||||||
Reference in New Issue
Block a user