Rename table fieldnames only if doctype exists

This commit is contained in:
Nabin Hait 2015-05-11 15:11:08 +05:30
parent affb3ec220
commit fedcb242ef

View File

@ -227,6 +227,7 @@ def execute():
frappe.reload_doc("accounts", "doctype", "fiscal_year_company")
#rename table fieldnames
if frappe.db.exists("DocType", dn):
for dn in rename_map:
frappe.reload_doc(get_doctype_module(dn), "doctype", scrub(dn))