cleanup property setter patch
diff --git a/erpnext/patches/may_2012/cleanup_property_setter.py b/erpnext/patches/may_2012/cleanup_property_setter.py
index 2aa3509..f4e3ef8 100644
--- a/erpnext/patches/may_2012/cleanup_property_setter.py
+++ b/erpnext/patches/may_2012/cleanup_property_setter.py
@@ -1,3 +1,5 @@
 def execute():
 	import webnotes
 	webnotes.conn.sql("delete from `tabProperty Setter` where property in ('width', 'previous_field')")
+
+	webnotes.conn.sql("delete from `tabSingles` where field = 'footer_font_color' and doctype = 'Style Settings'")
diff --git a/erpnext/patches/patch_list.py b/erpnext/patches/patch_list.py
index 8002078..e491b4c 100644
--- a/erpnext/patches/patch_list.py
+++ b/erpnext/patches/patch_list.py
@@ -312,5 +312,10 @@
 		'patch_file': 'repost_stock_for_posting_time',
 		'description': 'repost stock for posting time 00:00:seconds'
 	},
+	{
+		'patch_module': 'patches.may_2012',
+		'patch_file': 'cleanup_property_setter',
+		'description': 'cleanup_property_setter'
+	},
 
 ]