[support] [fix] [patch] reload support ticket and communication before the patch
diff --git a/patches/may_2013/p03_update_support_ticket.py b/patches/may_2013/p03_update_support_ticket.py
index bbdb6e2..7dc5854 100644
--- a/patches/may_2013/p03_update_support_ticket.py
+++ b/patches/may_2013/p03_update_support_ticket.py
@@ -17,6 +17,8 @@
 from __future__ import unicode_literals
 import webnotes
 def execute():
+	webnotes.reload_doc("support", "doctype", "support_ticket")
+	webnotes.reload_doc("core", "doctype", "communication")
 	for d in webnotes.conn.sql("""select name, raised_by from `tabSupport Ticket` 
 			where docstatus < 2""", as_dict=True):
 		tic = webnotes.get_obj("Support Ticket", d.name)