fix(minor): in install, load doctype_action and doctype_link before doctype

This commit is contained in:
Rushabh Mehta 2020-08-10 11:19:31 +05:30
parent 77018fc9d6
commit b0b5a56566

View file

@ -10,6 +10,8 @@ from frappe.utils.password import update_password
def before_install():
frappe.reload_doc("core", "doctype", "docfield")
frappe.reload_doc("core", "doctype", "docperm")
frappe.reload_doc("core", "doctype", "doctype_action")
frappe.reload_doc("core", "doctype", "doctype_link")
frappe.reload_doc("core", "doctype", "doctype")
def after_install():