diff --git a/frappe/custom/doctype/custom_field/custom_field.json b/frappe/custom/doctype/custom_field/custom_field.json index 0670d2ef7c..af7d5a93d9 100644 --- a/frappe/custom/doctype/custom_field/custom_field.json +++ b/frappe/custom/doctype/custom_field/custom_field.json @@ -908,7 +908,7 @@ "bold": 0, "collapsible": 0, "columns": 0, - "fieldname": "in_standard_filter", + "fieldname": "in_filter_dash", "fieldtype": "Check", "hidden": 0, "ignore_user_permissions": 0, diff --git a/frappe/patches.txt b/frappe/patches.txt index f22d7307e3..fd2e2a2cec 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -149,4 +149,3 @@ frappe.patches.v7_1.disabled_print_settings_for_custom_print_format frappe.patches.v7_2.set_doctype_engine frappe.patches.v7_2.merge_knowledge_base frappe.patches.v7_0.update_report_builder_json -frappe.patches.v7_2.custom_field_in_standard_filter_fix diff --git a/frappe/patches/v7_2/custom_field_in_standard_filter_fix.py b/frappe/patches/v7_2/custom_field_in_standard_filter_fix.py deleted file mode 100644 index d49bdbf165..0000000000 --- a/frappe/patches/v7_2/custom_field_in_standard_filter_fix.py +++ /dev/null @@ -1,8 +0,0 @@ -import frappe - -def execute(): - frappe.reload_doc('custom', 'doctype', 'custom_field', force=True) - try: - frappe.db.sql('update `tabCustom Field` set in_standard_filter = in_filter_dash`') - except Exception, e: - if e.args[0]!=1054: raise e