Merge pull request #7869 from Anurag810/removed_feedback_request_doctype
fix: Removed feedback request doctype
This commit is contained in:
commit
5b94dc147e
2 changed files with 9 additions and 0 deletions
|
|
@ -246,3 +246,4 @@ frappe.patches.v11_0.apply_customization_to_custom_doctype
|
|||
frappe.patches.v12_0.remove_feedback_rating
|
||||
frappe.patches.v12_0.move_form_attachments_to_attachments_folder
|
||||
frappe.patches.v12_0.move_timeline_links_to_dynamic_links
|
||||
frappe.patches.v12_0.delete_feedback_request_if_exists #1
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
frappe.db.sql('''
|
||||
DELETE from `tabDocType`
|
||||
WHERE name = 'Feedback Request'
|
||||
''')
|
||||
Loading…
Add table
Reference in a new issue