patch: remove custom field creation patch
diff --git a/erpnext/patches.txt b/erpnext/patches.txt
index d877cf5..d1577e5 100644
--- a/erpnext/patches.txt
+++ b/erpnext/patches.txt
@@ -232,7 +232,6 @@
erpnext.patches.v13_0.setup_gratuity_rule_for_india_and_uae
erpnext.patches.v13_0.setup_uae_vat_fields
execute:frappe.db.set_value('System Settings', None, 'app_name', 'ERPNext')
-erpnext.patches.v12_0.create_taxable_value_field
erpnext.patches.v12_0.purchase_receipt_status
erpnext.patches.v13_0.fix_non_unique_represents_company
erpnext.patches.v12_0.add_document_type_field_for_italy_einvoicing
diff --git a/erpnext/patches/v12_0/create_taxable_value_field.py b/erpnext/patches/v12_0/create_taxable_value_field.py
deleted file mode 100644
index ad95303..0000000
--- a/erpnext/patches/v12_0/create_taxable_value_field.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import frappe
-from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
-
-
-def execute():
- company = frappe.get_all("Company", filters={"country": "India"})
- if not company:
- return
-
- custom_fields = {
- "Sales Invoice Item": [
- dict(
- fieldname="taxable_value",
- label="Taxable Value",
- fieldtype="Currency",
- insert_after="base_net_amount",
- hidden=1,
- options="Company:company:default_currency",
- print_hide=1,
- )
- ]
- }
-
- create_custom_fields(custom_fields, update=True)