old_parent field is Link to parent dt now in account, cost center, item group, cust group, territory. It will fix renaming bug
diff --git a/patches/patch.py b/patches/patch.py
index be26d71..eed12c4 100644
--- a/patches/patch.py
+++ b/patches/patch.py
@@ -1346,4 +1346,5 @@
 	elif patch_no == 334:
 		reload_doc('knowledge_base', 'doctype', 'answer')
 	elif patch_no == 335:
-		sql("update `tabDocField` set fieldtype = 'Link', options = 'Account' where fieldname = 'old_parent' and parent = 'Account'")
+		for dt in ['Account', 'Cost Center', 'Territory', 'Item Group', 'Customer Group']:
+			sql("update `tabDocField` set fieldtype = 'Link', options = %s where fieldname = 'old_parent' and parent = %s", (dt, dt))