minor: remove useless patch

This commit is contained in:
Sagar Vora 2019-01-02 13:07:40 +05:30
parent d5fdc670f7
commit bedcc52cbe

View file

@ -1,19 +0,0 @@
import frappe
def execute():
icon_obj = {
'doctype': 'Desktop Icon',
'module_name': 'Social',
'label': 'Social',
'standard': 1,
'idx': 15,
'type': 'link',
'color': '#FF4136',
'link': 'social/home',
'icon': 'octicon octicon-heart'
}
if not frappe.db.exists(icon_obj):
icon = frappe.get_doc(icon_obj)
icon.insert()
frappe.db.commit()